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

css3 旋转出现动画

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

标签:blog   io   ar   for   on   div   log   cti   as   

@-moz-keyframes daf{
     0% {
         -moz-transform: rotate(-360deg) scale(0.2);
	     -webkit-transform: rotate(-360deg) scale(0.2);
	     -o-transform: rotate(-360deg) scale(0.2);
	     -ms-transform: rotate(-360deg) scale(0.2);
	     transform: rotate(-360deg) scale(0.2);
     }

      100% {
         -moz-transform: none;
	     -webkit-transform: none;
	     -o-transform: none;
	     -ms-transform: none;
	     transform: none;
     }
}

  

.daf:not(:target){
	animation-name: daf;
	 animation-duration: 1.5s;
	animation-timing-function: linear;
	-webkit-animation-name: daf;
	-webkit-animation-duration:1.5s;
	
	-moz-animation-name: daf;
	-moz-animation-duration: 1.5s;
	
	 -o-animation-name: daf;
	 -o-animation-duration:1.5s;
	
	 -ms-animation-name: daf;
	 -ms-animation-duration: 1.5s;
	
	
}

  

css3 旋转出现动画

标签:blog   io   ar   for   on   div   log   cti   as   

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

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