1.先瞧效果:
2.程式碼是這樣的:
<img src="images/circle.png" alt="" id="circle"/> @mixin ani-btnRotate{ @keyframes btnRotate{ from{transform: rotateZ(0);} to{transform: rotateZ(360deg);} } } @include ani-btnRotate; #circle{ position: absolute; left: 50%; width: REM(338); height: REM(338); margin-top: REM(200); margin-left: REM(-338/2); transform-origin: center center ; animation: btnRotate 1s 1s linear forwards; }
用到的圖片是這個:(就是白色轉動的那個圖片)
以上是html5讓圖片轉圈的動畫效果的實作方法介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!