我希望我的导航栏只能在滚动后显示。我已经用JS完成了这个,但是当它向上或向下滑动时有一个“步骤”。这是JS代码:
$(document).ready(function(){
// hide .navbar first
$(".navbar").hide();
// fade in .navbar
$(function () {
$(window).scroll(function(){
// set distance user needs to scroll before we fadeIn navbar
if ($(this).scrollTop() > 100) {
$('.navbar').slideDown(2000);
}
else {
$('.navbar').slideUp(2000);
}
});
});
});
JSfiddle:http://jsfiddle.net/3dcg2ygw/
我怎样才能顺利完成?
答案 0 :(得分:0)
我会在jQuery函数中使用淡入淡出
$(document).ready(function () {
// hide .navbar first
$(".navbar").hide();
// fade in .navbar
$(function () {
$(window).scroll(function () {
// set distance user needs to scroll before we fadeIn navbar
if ($(this).scrollTop() > 100) {
$('.navbar').fadeIn().slideDown();
} else {
$('.navbar').fadeOut().slideUp();
}
});
});
});
答案 1 :(得分:0)
问题是导航栏的最小高度,请在代码中尝试:
.navbar {
height: 97px;
background-color: #fff;
overflow:hidden;
min-height:0px;
}