我有一个导航栏,当我将鼠标悬停在列表中的一个链接上时,我试图从页外获取两个动画链接并在我的其他链接旁边结束。
当前导航链接:
<div class="links">
<ul>
<li>
<a href="#">link 1</a>
</li>
<li>
<a href="#">link 2</a>
</li>
<li>
<a href="#">link 3</a>
</li>
</ul>
</div>
和.links的css:
.links ul {
white-space: nowrap;
list-style-type: none;
position: fixed;
top: 8px;
left: 60%;
z-index: 4;
width: auto;
height: 67px;
}
.links li {
white-space: nowrap;
display: inline-block;
margin-right: 30px;
z-index: 4;
height: 40px;
}
这是相关的 css,以及我目前可以正常工作的动画:
.extralinks {
position: fixed;
top: 8px;
left: 90%;
animation-name: slidey;
animation-duration: 1s;
animation-timing-function: ease;
animation-delay: 0s;
animation-iteration-count: 1;
animation-direction: normal;
animation-play-state: running;
/* Safari and Chrome */
-webkit-animation-name: slidey;
-webkit-animation-duration: 1s;
-webkit-animation-timing-function: ease;
-webkit-animation-delay: 0s;
-webkit-animation-iteration-count: 1;
-webkit-animation-direction: normal;
-webkit-animation-play-state: running;
z-index: 4;
}
@keyframes slidey {
0% {left: 90%; top: 8px;}
100% {left: 40%; top: 8px;}
}
@-webkit-keyframes slidey /* Safari and Chrome */ {
0% {left: 90%; top: 8px;}
100% {left: 40%; top: 8px;}
}
.links li:nth-child(3) {
background-color: Red;
}
.extralinks 的标记
<div class="extralinks">
<ul>
<li>
<a href="#">link 4</a>
</li>
<li>
<a href="#">link 5</a>
</li>
</ul>
</div>
我需要这样做,以便当有人将鼠标悬停在“链接 3”上时,动画链接从右侧滑入并在我的链接旁边结束。我不太确定如何将动画准确链接到列表中的“链接 3”。有什么帮助吗?我不会反对使用 javascript/jquery,我只是不精通。
谢谢!