前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >垂直菜单特效--移动端

垂直菜单特效--移动端

作者头像
White feathe
发布2021-12-08 14:23:47
8380
发布2021-12-08 14:23:47
举报
文章被收录于专栏:White feathe 的博客

垂直菜单显示收缩特效–移动端浏览器版

并且实现去除点击事件300ms的阴影效果

css

代码语言:javascript
复制
html { height: 100%; width: 100%; font-size: 100px; outline: 0;}
body { height: 100%; margin: 0;  position: relative;background: #efeff4;}
.ui-header h1{font-size: 20px;text-align: center;color: #3b3c40;margin-top: 30px;margin-bottom: 25px;}
.menu_list{width:100%;margin:0 auto;}
.menu_head{height:60px;line-height:60px;padding-left:20px;font-size:16px;font-weight: normal;color:#333;border:none;border-bottom:1px solid #e1e1e1;outline: none;position:relative;margin:0px;background:#ffffff url(moreAddress.png) center right 21px no-repeat;background-size: 14px;}
.menu_list .current{background:#ffffff url(moreAddress-up.png) center right 21px no-repeat;background-size: 14px;outline: none;}
.menu_body{line-height: 20px;display: none;font-size: 14px;background: #efeff4;margin: 15px 20px;color: #3b3c40;outline: none;}
.menu_body p:first-child{padding-top: 5px;}
.menu_body p:last-child{padding-bottom: 5px;}
代码语言:javascript
复制
<!DOCTYPE html>
<html>

    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no" />
        <meta name="format-detection" content="telephone=no">
        <title></title>
        <script type="text/javascript" src="zepto.min.js"></script>
        <script type="text/javascript">

            $(function(){
                $("#firstpane .menu_head:eq(0)").addClass("current");
                $("#firstpane .menu_body:eq(0)").show();

                /*

                $("#firstpane .menu_head").click(function(event){
                    event.stopPropagation();
                    $(this).addClass("current").next("div.menu_body").toggle().siblings("div.menu_body").hide();
                    $(this).siblings().removeClass("current");
                    var display = $(this).next(".menu_body").css("display");
                    if(display == "none"){
                        $(this).removeClass("current");
                    }else if(display == "block"){
                        $(this).addClass("current");
                    }
                });

                */
                $("#firstpane .menu_head").on("singleTap",function(e){
                    if(!$(e.target).hasClass("btn")){
                        event.stopPropagation();
                        $(this).addClass("current").next("div.menu_body").toggle().siblings("div.menu_body").hide();
                        $(this).siblings().removeClass("current");
                        var display = $(this).next(".menu_body").css("display");
                        if(display == "none"){
                            $(this).removeClass("current");
                        }else if(display == "block"){
                            $(this).addClass("current");
                        }
                    }
                });

            });
        </script>
    </head>

    <body>
        <div data-role="header" role="banner" class="ui-header ui-bar-inherit">
            <h1 class="ui-title" role="heading" aria-level="1">常见问题</h1>
        </div>
        <div id="firstpane" class="menu_list">
            <div class="menu_head" data-shadow="false" data-corners="false">1、开通海外资产交易账户</div>
            <div class="menu_body">
                <p>费费费费费费费费费费费费费费费费费费费费费费费费费费费费费费费费费费费</p>
            </div>

            <div class="menu_head" data-shadow="false" data-corners="false">2、关于支付注资(入金)</div>
            <div class="menu_body">
                <p>将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将将</p>
            </div>


        </div>

        </body>

</html>
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2016/03/01 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 垂直菜单显示收缩特效–移动端浏览器版
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档