当用户向下滚动页面时,我的页面顶部出现了一个粘性导航栏,此时它突然弹出/出现在页面上。使用How to build floating menu bar when scroll down
中的以下代码//jQuery Code
//Sticky Nav
var top = jQuery(‘#mydiv’).offset().top - parseFloat(jQuery(‘#mydiv’).css('marginTop').replace(/auto/, 100));
jQuery(window).scroll(function (event) {
// what the y position of the scroll is
var y = jQuery(this).scrollTop();
// whether that's below the form
if (y >= top) {
// if so, ad the fixed class
jQuery(‘#mydiv’).addClass('fixed');
} else {
// otherwise remove it
jQuery(‘#mydiv’).removeClass('fixed');
}
});
//CSS
#mydiv.fixed {
position: fixed;
top: 0;
left: 0;
z-index: 1;
width: 100%;
border-bottom: 1px solid #000;
padding: 10px 0px 0px 3%;
background:#FFFFFF;
font-size: 85% !important;
}
我想添加一个过渡效果,以便在它出现时将其淡入,并在菜单消失时将其淡出。
我尝试将主线jQuery代码更新为
//whether that's below the form
if (y >= top) {
// if so, ad the fixed class
//jQuery(‘#mydiv’).addClass('fixed');
jQuery(‘#mydiv’).css({'position': 'fixed', 'top': '0px', 'opacity':'0', 'left':'0', 'z-index':'1', 'width':'100%', 'border-bottom':'1px solid #000', 'padding':'10px 0px 0px 3%', 'background':'#FFFFFF'}).animate({opacity:1},300);
当导航出现时它会转换/淡入,当滚动时菜单会出现毛刺/闪烁。
如果有人能告诉我如何正确地做到这一点,任何帮助都会很棒
答案 0 :(得分:1)
您可以将代码保存在类中(它更清晰),只需使用jQuery的.fadeIn()
函数,而不是为不透明度设置动画。
if (y >= top) {
// if so, add the fixed class
jQuery('#mydiv').addClass('fixed').fadeIn();
} else {
// otherwise remove it
jQuery('#mydiv').removeClass('fixed').fadeOut();
}
另一个不错的方法是让酒吧从顶部顺畅地制作动画。你可以在CSS中完全做到这一点:
#mydiv{
position: fixed;
top: -100px; //height of the div
left: 0;
z-index: 1;
width: 100%;
border-bottom: 1px solid #000;
padding: 10px 0px 0px 3%;
background:#FFFFFF;
font-size: 85% !important;
-webkit-transition: top 0.5s;
transition: top 0.5s;
}
#mydiv.fixed {
top: 0;
}
如果您使用的是CSS解决方案,则不需要fadeIn()
功能。