這次帶給大家html5怎麼做出圖片轉圈的動畫效果,h5做出圖片轉圈的動畫效果的注意事項有哪些,下面就是實戰案例,一起來看一下。
<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; }
相信看了這些案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
相關閱讀:
以上是html5如何做出圖片轉圈的動畫效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!