移动端向上滑动整个屏幕

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
);

以上是关于移动端向上滑动整个屏幕的主要内容,如果未能解决你的问题,请参考以下文章

移动端怎么用JS判断是手势是向上滑动还是向下滑动

React版移动端滑动

安卓移动端软键盘弹出问题解决方案

在移动端浏览器上怎么实现当页面向上和向下滑动时隐藏

移动端手指滑动事件

移动端禁止遮罩层以下屏幕滑动