作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的网站页面上有一个顶部导航栏,当 $(window).scrollTop() > 44
时,它实际上得到修复。这在 Mozilla 上工作正常并且看起来不错,但在 safari 和 chrome 上它在修复 topnavbar
时跳转。有什么解决办法吗?
这是我的代码:-
//js
if(viewportWidth > 1199 && $(window).scrollTop() > 44){
$('#topnavbar').addClass('topnavbarfixed');
}
/*css*/
.topNavBar {
position: relative;
width: 100%;
float: left;
background: #fff;
border-bottom: 1px solid rgba(243, 243, 243, 0.88);
z-index: 999 !important;
padding: 0 !important;
}
.topnavbarfixed {
position: fixed !important;
top: 0;
width: 100%;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="topnavbar" class="topNavBar">
<!--Logo and some contents here -->
</div>
最佳答案
.navBar {
width: 100%; height: 6%;
background-color: rgb(240, 240, 240);
position: sticky;
left: 0; top: 0;
padding: 1%;
overflow: auto;
}
.navBar a {text-decoration: none; margin-right: 1%;}
.emptySpace {width: 100%; height: 1000000px;}
<span class="navBar">
<a href="">Link 1</a>
<a href="">Link 2</a>
<a href="">Link 3</a>
<a href="">Link 4</a>
<a href="">Link 5</a>
</span>
<div class="emptySpace"></div>
我对你的要求有点困惑,但如果你想让导航栏在用户滚动时保持在屏幕顶部,你可能想试试
/*CSS*/
.topNavBar {position: sticky;}
如果这不是您要查找的内容,请更具体一些。
希望这会有所帮助。
关于javascript - top navbar sticky 不适用于 Chrome 和 Safari,但适用于 mozilla,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45585653/
我是一名优秀的程序员,十分优秀!