欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

HTML 练习滑动

程序员文章站 2023-11-16 12:30:10
``` Title 显示 隐藏 toggle hello world ``` ......
<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>title</title>
    <script src="jquery-3.3.1.min.js"></script>
    <style>
        #flipshow, #content, #fliphide, #toggle{
            padding: 5px;
            text-align: center;
            background-color: blueviolet;
            border: solid 1px; red;
        }
        #content{
            padding: 50px;
            display: none;
        }
    </style>
</head>
<body>
<div id="flipshow">显示</div>
<div id="fliphide">隐藏</div>
<div id="toggle">toggle</div>
<div id="content">hello world</div>
</body>
<script>
    $("#flipshow").click(function(){
        $("#content").slidedown(1000);
    })

    $("#fliphide").click(function(){
        $("#content").slideup(1000);
    })

    $("#toggle").click(function(){
        $("#content").slidetoggle(1000);
    })
</script>
</html>