gpt4 book ai didi

css - 我如何做这个动画下划线悬停效果?

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

谁能帮我弄清楚这个很酷的动画下划线悬停效果是如何在 site 上完成的? ?我试图自己复制它,但没有成功。这是我的 jsbin

最佳答案

当你将鼠标悬停在 href 上时,你需要为此编写 css 和动画功能,你可以引用我的代码

a{
text-decoration:none;
}
a:hover {
border-bottom: 1px solid;
-webkit-animation: border-hover .6s infinite ease-in-out !important;
animation: border-hover .6s infinite ease-in-out !important
}

@-webkit-keyframes border-hover {
0%,
100% {
border-bottom-style: dotted
}
25%,
50% {
border-bottom-style: dashed
}
75% {
border-bottom-style: solid
}
}

@-moz-keyframes border-hover {
0%,
100% {
border-bottom-style: dotted
}
25%,
50% {
border-bottom-style: dashed
}
75% {
border-bottom-style: solid
}
}

@-o-keyframes border-hover {
0%,
100% {
border-bottom-style: dotted
}
25%,
50% {
border-bottom-style: dashed
}
75% {
border-bottom-style: solid
}
}

@keyframes border-hover {
0%,
100% {
border-bottom-style: dotted
}
25%,
50% {
border-bottom-style: dashed
}
75% {
border-bottom-style: solid
}
}
<a href="#" class"link">Link goes here</a>

关于css - 我如何做这个动画下划线悬停效果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40193492/

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