曹え 5811 发布于:2022-06-09 00:59:58
$s = $('.header') $(window).scroll(function(e){ var w_top = $(window).scrollTop(); // 导航条固定在屏幕上 if ( w_top > 50) { $s.addClass('header-fixed') } else { $s.removeClass('header-fixed') } })
上面的50是是向下滚动的距离,单位是px
登录后可以留言提问!
微信扫码登录