1. 程式人生 > 其它 >2021年按鈕變形閃爍效果css特效

2021年按鈕變形閃爍效果css特效

<!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>