自记滚动事件
Posted 明明一颗大白菜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自记滚动事件相关的知识,希望对你有一定的参考价值。
var resultTop = $(".about-we-nav").offset().top;
$(window).scroll(function () {
if ($(document).scrollTop() >= resultTop-24) {
$(".about-we-nav").css({"top":"24px","position":"fixed"})
} else {
$(".about-we-nav").css({"position":"static"});
// alert(1)
}
});
以上是关于自记滚动事件的主要内容,如果未能解决你的问题,请参考以下文章