2021年按鈕變形閃爍效果css特效
阿新 • 來源:網路 • 發佈:2021-03-23

<!DOCTYPE html>
<html lang="zh">
更美更多的特效在碼蝗網下載
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title></title>
<style>
.goodShow button{
animation: myAnimation 5s infinite;
background: gainsboro;
}
@keyframes myAnimation{
0%{
transform: scale(1)
}
25%{
transform: scale(1.2)
}
50%{
transform: scale(1)
}
75%{
transform: scale(1.2)
}
}
</style>
</head>
<body style="padding: 50px;">
<div class="goodShow">
<button>精彩活動</button>
</div>
</body>
</html>
