自记滚动事件

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)
}
});

posted @ 2018-05-18 10:09  明明一颗大白菜  阅读(140)  评论(0编辑  收藏  举报
<-- -->