CSS3的animation+scale實現視覺沖擊力的效果


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
@keyframes aaa {
from {-webkit-transform: scale(1);
transform: scale(1);}
to{-webkit-transform: scale(2);
transform: scale(2);}
}
#aaa{
margin:200px auto;
width:250px;
height:250px;
background: red;
border-radius: 50%;

}
#aaa:hover{
animation: aaa 0.1s ease-in 0s infinite alternate;
}
</style>
</head>
<body>
<div id="aaa"></div>
</body>
</html>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM