html5让图片转圈的动画结果的实现办法介绍-
发布时间:08/01 来源:未知 浏览:
关键词:
2.代码是这样的:
@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让图片转圈的动画结果的实现办法介绍的细致内容,更多请关注 百分百源码网 其它相干文章!