移动端向上滑动整个屏幕
Posted dehuachenyunfei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了移动端向上滑动整个屏幕相关的知识,希望对你有一定的参考价值。
监听touchStart,touchEnd,使用jquery的animate
touchStart(e)
console.log("开始");
this.startY = e.targetTouches[0].clientY;
,
touchEnd(e)
// e.preventDefault();
let y = Math.abs(this.startY - e.changedTouches[0].clientY) > 30;
console.log("结束:" + y);
if (y)
$("html,body").animate(
scrollTop: 2 * window.innerHeight + 20 * 2 + "px" ,
500
);
以上是关于移动端向上滑动整个屏幕的主要内容,如果未能解决你的问题,请参考以下文章