判断滚动事件由下到上触发事件(伪)

Posted 11个条子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了判断滚动事件由下到上触发事件(伪)相关的知识,希望对你有一定的参考价值。

.chan-top{top: 416px;}
<div class="ans-box chan-top" style="height: 312px; position: fixed;left: 50%;margin-left: -600px;"></div>
$(window).scroll(function(){
var s=$(window).scrollTop();
console.log(s);
if(s >= 416){
$(‘.ans-box‘).removeClass(‘chan-top‘);

}else {
$(‘.ans-box‘).addClass(‘chan-top‘);
}
});
固定ans-box的位置,在滚动时删除top值,等到由下而上是触发事件在添加上top值

以上是关于判断滚动事件由下到上触发事件(伪)的主要内容,如果未能解决你的问题,请参考以下文章

jQuery事件传播,事件流

js scroll 滚动连续多次触发事件怎么只执行一次?

滚动时如何使 UITableView 从下到上显示?

js判断鼠标滑轮滚动方向并根据滚动的方向触发不同的事件

单击同一个div时如何从上到下和从下到上缓慢滚动?

js scroll 滚动连续多次触发事件怎么只执行一次