滑动事件
Posted 小橙子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了滑动事件相关的知识,希望对你有一定的参考价值。
var startPosition,endPosition,deltaX,deltaY,moveLength,; $(".cover").on(‘touchstart‘, function(e){ e.preventDefault(); var touch = e.touches[0]; startPosition = { x: touch.pageX, y: touch.pageY } }).on(‘touchmove‘, function(e){ e.preventDefault(); var touch = e.touches[0]; endPosition = { x: touch.pageX, y: touch.pageY }; deltaX = endPosition.x - startPosition.x; deltaY = endPosition.y - startPosition.y; //moveLength = Math.sqrt(Math.pow(Math.abs(deltaX), 2) + Math.pow(Math.abs(deltaY), 2)); }).on(‘touchend‘, function(e){ e.preventDefault(); if(deltaY < -50) { // 向上划动 $(‘.wrap‘).css({ "-webkit-transform": "translate3d(0, -100%, 0)" }); startPosition=null; endPosition=null; deltaX=0; deltaY=0; } else if (deltaY > 0) { // 向下划动 } });
以上是关于滑动事件的主要内容,如果未能解决你的问题,请参考以下文章
我的片段中有 webview,当滑动 webview 时, viewPager 也开始滑动