感谢codeSpy,我有这个:http: //jsfiddle.net/p9tBR/
我不知道如何在更改页面时更改蓝线。例如,如果我在第 2 页,我希望蓝线在 2 下方而不是 1。当我在第 2-4 页时,该线回到 1。抱歉,我很糟糕解释这一点,所以这是一张图片。
HTML:
<header>
<ul>
<li><a href="1.html" id="current">1</a></li>
<li><a href="2.html">2</a></li>
<li><a href="3.html">3</a></li>
<li><a href="4.html">4</a></li>
<span></span>
</ul>
</header>
CSS:
body {
font-family: sans-serif;
}
ul {
padding: 0;
position: absolute;
left: 50%;
width: 500px;
margin: 0 0 0 -250px;
list-style-type: none;
}
ul:hover > span {
background: #d0332b;
}
ul { margin-top: 50px;}
ul li {
font-weight: bold;
width: 25%;
float: left;
padding: 7px 0;
text-align: center;
cursor: pointer;
}
ul li:hover {
color: #d0332b;
}
ul li:nth-child(2):hover ~ span {
left: 25%;
}
ul li:nth-child(3):hover ~ span {
left: 50%;
}
ul li:nth-child(4):hover ~ span {
left: 75%;
}
span {
position: absolute;
bottom: -42px;
display: block;
width: 25%;
height: 7px;
background: #00b6ff;
}
ul li, span {
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
transition: all 0.2s ease;
position: relative;
}
a {
text-decoration: none;
color: #232323;
}
a:hover {
display: block;
color: #d0332b;
}