我想通过
捕捉滚动或触摸移动的事件$(document).on('scroll touchmove', function() {});
但该事件无效。因为我已经习惯了
overflow:hidden;
我如何捕获这些事件并使用自定义动画而不是经典滚动。
答案 0 :(得分:1)
检查
$(document).on('scroll touchmove', function() {
console.log('scroll working...');
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<body style="min-height:1120px;"></body>
&#13;