zoukankan      html  css  js  c++  java
  • jquery案例2手风琴案例

    1.效果

       

    2.代码

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>手风琴</title>
        <style>
            .wrap {
                 500px;
                margin:0 auto;
            }
            a {
                text-decoration: none;
            }
            .myGroup {
                 500px;
                border: 1px solid #ccc;
            }
            .showdiv {
                 500px;
                height: 400px;
                display: none;
            }
            .mytitle {
                display: inline-block;
                text-align: center;
                background: #ccc;
                border-bottom:1px solid $ccc;
                 500px;
                height: 30px;
                line-height: 30px;
            }
        </style>
    </head>
    <script src="jquery.js"></script>
    <body>
            <div class="wrap">
                <div class="myGroup">
                    <span class="mytitle"><a href="#">标题1</a></span>
                    <div class="showdiv">
                        this is first showdiv
                    </div>
                </div>
    
                <div class="myGroup">
                    <span class="mytitle"><a href="#">标题2</a></span>
                    <div class="showdiv">
                        this is second showdiv
                    </div>
                </div>
            </div>
    </body>
    </html>
    <script>
    $(function(){
        $(".wrap .mytitle").click(function(){
            $(this).next().slideDown(1000);
            $(this).parent().siblings().children(".showdiv").slideUp(1000);
        });
    })
    </script>
  • 相关阅读:
    flutter 反序列化
    系统架构师-系统开发基础
    java Lambda表达式
    java异常
    HTTP缓存了解(一)
    设计模式(一):策略模式
    配置自己的ubuntu
    正则表达式:贪婪与非贪婪
    .htaccess文件
    mysql协议简析
  • 原文地址:https://www.cnblogs.com/zh718594493/p/15647602.html
Copyright © 2011-2022 走看看