0 1202

css3圆形图片可以转圈圈哦

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>旋转动画</title>
<style>
*{margin: 0; padding: 0;}
.ta_c{text-align: center;
margin-top: 100px;}
@-webkit-keyframes rotation{
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}
.Rotation:hover{
-webkit-transform: rotate(360deg);
animation: rotation 3s linear infinite;
-moz-animation: rotation 3s linear infinite;
-webkit-animation: rotation 3s linear infinite;
-o-animation: rotation 3s linear infinite;
}
.img{border-radius: 250px;}
</style>
</head>
<body>
<div class="ta_c"><img class="Rotation img" src="https://yuanmouren.erlyun.com/assets/attachment/avatar/276/276_avatar_middle.jpg" width="50" height="50"/></div>
</body>
</html>

[分类]
[来源] http://erlangyun.com/p/id/87.html
[声明] 本站资源来自用户分享,如损害你的权益请联系客服QQ:120074275给予处理。