使用touch事件实现手机网页右侧菜单栏拖动显示隐藏

呵呵,第一次写博客...以前有问题有bug总喜欢搜别人的demo和解决方法,现在搞了那么久前端,还觉得有一点点小经验,今天也来分享一个手机webapp上实用的dome——使用touch事件实现手机网页右侧菜单栏拖动显示隐藏。

先贴代码

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<title>使用touch事件实现手机网页右侧菜单栏拖动显示隐藏</title>
</head>
<style>
   html,body{
    margin: 0;
   }

.page{
width: 100%;
overflow: hidden;
position: relative;
}

.container{
width: 100%;
height: 100%;
}

.sidebar{position: fixed;top: 0px;right: -180px;width:180px;height: 100%;background: #999;color: #fff;}

.content{width: 100%; height: 2000px;}
</style>
<body>
<div class="page">
<div class="container">
<div class="sidebar">菜单栏</div>
<div class="content">(=^ ^=)夜猫子</div>
</div>

</div>

<script src="js/zepto.js"></script>
<script>
var sx,sy,moveEndX,moveEndY;
       var isMoveX = false;
       $('.container').on("touchstart",function(e){

           //记录原始触点
           sx=e.touches[0].pageX;  
           sy=e.touches[0].pageY;
       });

       $('.container').on("touchmove",function(e){
           moveEndX = e.touches[0].pageX;
           moveEndY = e.touches[0].pageY;
           var X = Math.abs(moveEndX - sx);
           var Y = Math.abs(moveEndY - sy);

           //判断是上下拖动还是左右拖动
           if ( X > Y ) {
               e.preventDefault();
               isMoveX = true;
           }else{
               isMoveX = false;
           }
       });

       $('.container').on("touchend",function(e){
           if(isMoveX ){
               if((moveEndX-sx)<0){
                   $(".container").animate({"-webkit-transform":"translate3d(-180px, 0px, 0px)"},300,"easeing");
               }else{
                   $(".container").animate({"-webkit-transform":"translate3d(0px, 0px, 0px)"},300,"easeing");
               }
           }

           isMove=false;
       });

</script>
</body>
</html>


我用的是zepto,用其他的支持touch事件的插件都可以 喵(=^ ^=)


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值