滑动窗口滚动条触发事件
Posted 明月照亮天涯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了滑动窗口滚动条触发事件相关的知识,希望对你有一定的参考价值。
$(window).on("scroll", function() {
if (timer) {
clearTimeout(timer);
timer = null;
}
timer = setTimeout(function() {
var st = $(window).scrollTop();
$("#imgbox").css(‘top‘,st+"px"); //弹出窗
if(st>240){
$(".infoimg").each(function(i){var src =$(this).attr("_src"); $(this).attr(‘src‘,src); $(this).removeAttr("_src");});
}
var offsetTop = st - scrollTop;
if (offsetTop > 0 && st > topBarHeight) {
topBar.css("top", -topBarHeight);
} else {
topBar.css("top", 0);
}
scrollTop = st;
timer = null;
}, 300);
});
以上是关于滑动窗口滚动条触发事件的主要内容,如果未能解决你的问题,请参考以下文章