作者:爱碩爱你_静莫失心 | 来源:互联网 | 2020-08-31 04:05
这篇文章主要介绍了html5实现图片转圈的动画效果——让页面动起来的相关资料,需要的朋友可以参考下
1.先瞧瞧效果:
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
Canvas来绘制三角形和矩形等多边形的方法
以上就是html5如何实现图片转圈的动画效果的详细内容,更多请关注 第一PHP社区 其它相关文章!