如何在不实际滚动的情况下检测滑动方向?这是我在做什么:
function preventDefault(e) {
e = e || window.event;
if (e.preventDefault)
e.preventDefault();
e.returnValue = false;
}
window.ontouchmove = preventDefault;
window.addEventListener('touchmove', function(e) {
if (e.deltaY < 0) {
console.log('scrolling up');
document.getElementById('status').innerHTML = 'scrolling up';
}
if (e.deltaY > 0) {
console.log('scrolling down');
document.getElementById('status').innerHTML = 'scrolling down';
}
});
<div style='height: 2000px; border: 5px solid gray; touch-action: none;'>
<p id='status'></p>
</div>
我观察到的是,尽管屏幕没有滚动,但是没有事件监听器代码执行。这是因为事件中没有'deltaY'属性。我在桌面上使用equivalent code和'wheel'事件来检测滚动方向而不滚动。
答案 0 :(得分:0)
这就是我所做的:
let start = null;
window.addEventListener('touchstart', function(e) {
start = e.changedTouches[0];
});
window.addEventListener('touchend', function(e) {
let end = e.changedTouches[0];
if(end.screenY - start.screenY > 0)
{
console.log('scrolling up');
document.getElementById('status').innerHTML = 'scrolling up';
}
else if(end.screenY - start.screenY < 0)
{
console.log('scrolling down');
document.getElementById('status').innerHTML = 'scrolling down';
}
});