知識點:css
css3動畫
html
transitioncss3
/*旋轉動畫*/ @-webkit-keyframes rotation{ from {-webkit-transform: rotate(0deg);} to {-webkit-transform: rotate(360deg);} }
效果:web
源碼:css3動畫
-----------------------
ide
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>圖片過渡縮放</title> <style> /*通用樣式*/ *{margin: 0;padding: 0;} /*自定義樣式*/ .img{margin-left: 25px;margin-top: 50px;margin-right: 25px; transition: all 2s ease; } .img:hover{ z-index: 10; border: 1px dashed #ff0000; -webkit-transform: rotateY(360deg); transform: scale(1.51,1.51) rotate(360deg); } .ta_c{text-align: center; width: 99%; } /*旋轉動畫*/ @-webkit-keyframes rotation{ from {-webkit-transform: rotate(0deg);} to {-webkit-transform: rotate(360deg);} } </style> </head> <body> <div class="ta_c"> <img src="img/1.jpg" width="25%" class="img" /> <img src="img/2.jpg" width="25%" class="img" /> <img src="img/3.jpg" width="25%" class="img" /> <img src="img/4.png" width="25%" class="img" /> <img src="img/5.jpg" width="25%" class="img" /> <img src="img/6.jpg" width="25%" class="img" /> </div> </body> </html>