所属分类:web前端开发
<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;
}
登录后复制
相信看了这些案例你已经掌握了方法,更多精彩请关注zzsucai.com其它相关文章!
相关阅读:
怎样使用a标签的href属性与onclick事件
input输入框中的光标大小显示不一致应该怎么解决
怎样解决a标签的背景图在ie8下不显示这个问题
html的打印代码支持翻页
type="file"的input框样式应该如何操作
以上就是html5怎样做出图片转圈的动画效果的详细内容,更多请关注zzsucai.com其它相关文章!