1 Star 0 Fork 0

FirePotatoBox/HTML

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
流光按钮.html 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
FirePotatoBox 提交于 2020-05-19 00:33 . first
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>流光按钮</title>
<style>
*{
margin: 0;
padding: 0;
}
body{
background: #000;
}
a{
text-decoration: none;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
font-size: 25px;
background: linear-gradient(90deg,#03a9f4,#f441a5,#ffeb3b,#03a9f4);
background-size: 400%;
width: 400px;
height: 100px;
color: #fff;
line-height: 100px;
text-align: center;
text-transform: uppercase;
border-radius: 50px;
z-index: 1;
}
a::before{
content: "";
position: absolute;
left: -5px;
right: -5px;
top: -5px;
bottom: -5px;
background: linear-gradient(90deg,#03a9f4,#f441a5,#ffeb3b,#03a9f4);
background-size: 400%;
border-radius: 50px;
filter: blur(20px);
z-index: -1;
}
a:hover{
animation: sun 8s infinite;
}
a:hover::before{
animation: sun 8s infinite;
}
@keyframes sun{
100%{
background-position: -400% 0;
}
}
</style>
</head>
<body>
<a href="javascript:;">点击</a>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/FirePotatoBox/HTML.git
git@gitee.com:FirePotatoBox/HTML.git
FirePotatoBox
HTML
HTML
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385