码迷,mamicode.com
首页 > Web开发 > 详细

CSS3实现图片循环旋转

时间:2017-07-19 00:16:16      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:web   src   blog   radius   top   border   image   bsp   key   

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>图片循环旋转</title>
<style>

.ta_c{text-align: center;
margin-top: 100px;}

@-webkit-keyframes rotation{
from {-webkit-transform: rotate(0deg);}
to {-webkit-transform: rotate(360deg);}
}

.Rotation{
    -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:100%;
}
</style>
</head>
<body>

<div class="ta_c">
    <img class="Rotation img" src="http://images2015.cnblogs.com/blog/546882/201707/546882-20170718230517411-1727231843.png" width="500" height="500"/>
</div>

</body>
</html>

 

CSS3实现图片循环旋转

标签:web   src   blog   radius   top   border   image   bsp   key   

原文地址:http://www.cnblogs.com/xyyt/p/7203373.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!