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

css3360度旋转动画

时间:2014-12-05 16:50:46      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   sp   for   on   div   log   bs   

@-webkit-keyframes Parallaxs{
     from {
        -webkit-transform: rotate(180deg) ;
	    -moz-transform: rotate(180deg) ;
	    -o-transform: rotate(180deg) ;
	    transform: rotate(180deg);
     }
     to {
         -webkit-transform: rotate(360deg) ;
	    -moz-transform: rotate(360deg) ;
	    -o-transform: rotate(360deg) ;
	    transform: rotate(360deg);
     }
}

 

.feng:not(:target){
	-webkit-animation-name: Parallaxs;
	-webkit-animation-duration: 10s;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-name: Parallaxs;
	-moz-animation-duration: 10s;
	-moz-animation-iteration-count: infinite;
	-o-animation-name: Parallaxs;
	-o-animation-duration: 10s;
	-o-animation-iteration-count: infinite;
	animation-name: Parallaxs;
	animation-duration: 10s;
	animation-iteration-count: infinite;
}

  

 

css3360度旋转动画

标签:blog   io   ar   sp   for   on   div   log   bs   

原文地址:http://www.cnblogs.com/xupeiyu/p/4146833.html

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