gpt4 book ai didi

javascript - 导航菜单在滚动时淡入

转载 作者:太空宇宙 更新时间:2023-11-04 03:44:24 25 4
gpt4 key购买 nike

我正在设计一个网站,我希望导航菜单在我向下滚动 >50 像素后淡入。我将以下 JavaScript 与 JQuery 库一起使用:

(function ($) {
$(document).ready(function () {

$(window).scroll(function () {
if ($(this).scrollTop() > 50) {
$('.menu').fadeIn(500);
} else {
$('.menu').fadeOut(500);
}
});

});
})(jQuery);

.menu 类在 {display: none;} 上设置。

最佳答案

这应该可行

$(document).ready(function(){
$(window).bind('scroll', function() {
var distance = 50;
if ($(window).scrollTop() > distance) {
$('nav').fadeIn(500);
}
else {
$('nav').fadeOut(500);
}
});
});

Codepen Demo

关于javascript - 导航菜单在滚动时淡入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24368206/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com