使用overflow:hidden禁用滚动时捕获滚动

时间:2016-05-16 11:38:30

标签: jquery css

我想通过

捕捉滚动或触摸移动的事件
$(document).on('scroll touchmove', function() {});

但该事件无效。因为我已经习惯了 overflow:hidden;我如何捕获这些事件并使用自定义动画而不是经典滚动。

1 个答案:

答案 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;
&#13;
&#13;