gpt4 book ai didi

jquery - 像Apple iphone 5c页面一样滚动时使导航栏向下滑动

转载 作者:可可西里 更新时间:2023-11-01 12:48:05 24 4
gpt4 key购买 nike

我在基于 Bootstrap 3 的网页上工作,我喜欢在向下滚动时让我的导航栏向下滑动,就像在 Apple 中一样 iPhone 5c Page , (havbar should be hidden initialy) 我不是 js 专家,我们将不胜感激。提前谢谢你。

听到的是我创建的示例代码。 CODE

最佳答案

您必须指定窗口的 scroll 事件:

$(window).scroll(function(e){
// here the bar is id'ed myBar
if ($(this).scrollTop() > 30) { // choose the value you want.
$('#myBar:hidden').slideDown();
} else {
$('#myBar:visible').slideUp();
}
});

确保 CSS 是正确的:position:fixed,等等……

这是一个Fiddle

关于jquery - 像Apple iphone 5c页面一样滚动时使导航栏向下滑动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23650357/

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