gpt4 book ai didi

html - 链接/悬停效果不适用于固定导航栏中页面的某些部分

转载 作者:行者123 更新时间:2023-11-28 16:37:37 24 4
gpt4 key购买 nike

我一直在为 friend 开发一个简单的网站,并决定使用 Weebly(是的,我知道,nooby),因为我不想从头开始构建一个简单的网站。我在页面右侧添加了一个固定的导航栏,其形式为带有附加链接的圆形按钮。不幸的是,当我滚动时,一旦我到达页面上的文本框,链接和悬停效果就会停止工作(按钮仍然可以正常滚动)。一旦它通过,他们就会再次工作。由于我使用的是 Weebly,因此我无法完全访问页面中的所有 html,但我可以完全访问 CSS 文件。对于带有 3 个按钮的导航栏,我的代码如下所示:

<div data-spy="affix" class="offset8 span1 well offset7 small  nav">
<ul class="nav nav-list">
<p><a href="#A"><img src="http://i.imgur.com/wV1JVH2.png" height="32" width="32" onmouseover="this.src='http://i.imgur.com/whPzX4a.png'" onmouseout="this.src='http://i.imgur.com/wV1JVH2.png'" <a></p>
<p><a href="#B"><img src="http://i.imgur.com/wV1JVH2.png" height="32" width="32" onmouseover="this.src='http://i.imgur.com/whPzX4a.png'" onmouseout="this.src='http://i.imgur.com/wV1JVH2.png'" <a></p>
<p><a href="#L384"><img src="http://i.imgur.com/wV1JVH2.png" height="32" width="32" onmouseover="this.src='http://i.imgur.com/whPzX4a.png'" onmouseout="this.src='http://i.imgur.com/wV1JVH2.png'" <a></p>
</ul>
</div>

这是 CSS:

nav {
position: fixed;
float: right;
right: 0px;
!important;
}

下面是它的几张图片,显示了这个问题:

Working before the textbox

Not working during the textbox

同样,很遗憾,我无法访问文本框的代码,因为它在 Weebly 中。

任何帮助将不胜感激。谢谢!

最佳答案

你的CSS是错误的。它应该是这样的:

ul.nav {
position: fixed;
z-index: 1000;
right: 0px;
top: 20%; /* Change this to your needs */
}

关于html - 链接/悬停效果不适用于固定导航栏中页面的某些部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34245094/

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