gpt4 book ai didi

html - Pushy 菜单固定在顶部

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

在此page Pushy Menu正在被使用。我希望它固定在顶部。在 Pushy 的 css 中它有 css `位置:固定;和顶部:0;默认情况下,但当您向下滚动时它不会将菜单保持在顶部,并且当您向下滚动时菜单会消失。我该如何解决这个问题?

/* Menu Appearance */
.pushy {
position: fixed;
width: 250px;
height: 100%;
top: 0;
z-index: 9999;
background: rgb(4, 147, 189); /* wasVery dark grey #191918 */
overflow: auto;
visibility: hidden;
-webkit-overflow-scrolling: touch;
/* enables momentum scrolling in iOS overflow elements */
}

最佳答案

       <style>
/* Menu Appearance */
.pushy {
/* position: fixed;*/
width: 250px;
height: 100%;
top: 0;
z-index: 9999;
background: rgb(4, 147, 189); /* wasVery dark grey #191918 */
overflow: auto;
visibility: hidden;
-webkit-overflow-scrolling: touch;
/* enables momentum scrolling in iOS overflow elements */
}
.fix{
position: fixed;
}
</style>
<script>
$(window).scroll(function(){

var scroll = $(window).scrollTop();
if (scroll >= 50)
{
$('.pushy').addClass('fix');
}
else {
$('.pushy').removeClass('fix');
}
});
</script>

关于html - Pushy 菜单固定在顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41710199/

25 4 0