码迷,mamicode.com
首页 > 其他好文 > 详细

圆边图片无限旋转

时间:2016-04-13 18:37:18      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

Demo: http://output.jsbin.com/qusikinaga
还有一个很好的transform js
http://louisremi.github.io/jquery.transform.js/index.html

Demo: http://output.jsbin.com/qusikinaga
还有一个很好的transform js
http://louisremi.github.io/jquery.transform.js/index.html

//html
<div id="block"></div>
//css
#block {
  width:119px;
  height: 119px;
  background-color:red;
  position:absolute;
  left:100px;
  top:100px;
  -webkit-animation: rotating 10s linear infinite;

  background-image: url(https://ss3.baidu.com/9fo3dSag_xI4khGko9WTAnF6hhy/ting/pic/item/e850352ac65c10380541f2e3b0119313b07e89d7.jpg);
  -webkit-border-radius: 50%;

}

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

  

圆边图片无限旋转

标签:

原文地址:http://www.cnblogs.com/zlog/p/5388097.html

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