我确实提供了一个使用窗口滚动div .header-menu
的功能,但是滚动完成后的头几秒钟菜单出现了停顿现象。滚动片刻后,它不再结结巴巴了。
这是我正在使用的脚本:
$( document ).ready(function() {
$(window).scroll(function(){
$('.header-menu').stop().css('top', $(this).scrollTop());
});
});
我如何才能使此代码更好,以使它流畅运行而不会结结巴巴?
感谢您的时间!