一也糊、可以使用a標(biāo)簽代替button按鈕
<a>liuguang</a>
二拍冠、css代碼如下(利用animation實現(xiàn)動畫效果):
* {
margin: 0;
padding: 0;
}
body {
background-color: black;
}
a {
text-decoration: none;
position: absolute;
/* 水平垂直居中 */
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
font-size: 24px;
/* 角度漸變 */
background: linear-gradient(90deg,blue,rgb(4, 171, 255),purple,rgb(223, 9, 235),rgb(163, 97, 237));
background-size: 400%;
width: 400px;
height: 100px;
line-height: 100px;
text-align: center;
color: white;
/* 大寫字母轉(zhuǎn)換 */
text-transform: uppercase;
border-radius: 50px;
z-index: 1;
}
a:hover {
background-color: white;
animation: light 5s infinite;
}
@keyframes light {
100%{
background-position: -400% 0;
}
三辟拷、還可利用偽元素為按鈕增加模糊背景和線條流光
a::before {
content: "";
position: absolute;
left: -5px;
top: -5px;
right: -5px;
bottom: -5px;
/* border: 1px solid white; */
background: linear-gradient(90deg,blue,rgb(4, 171, 255),purple,rgb(223, 9, 235),rgb(163, 97, 237));
background-size: 400%;
border-radius: 50px;
/* 背景模糊 */
filter: blur(20px);
z-index: -1;
}
/* 偽元素設(shè)置動畫 */
a:hover::before {
animation: light 5s infinite;
}
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者