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

css3创建动画

时间:2014-10-30 20:39:26      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   div   on   log   as   tt   class   

@keyframes ico{
	 0% {
      top: -100%;
     }

	 100%{
		top:4%;
     }
 }

 @-webkit-keyframes ico{
	 0% {
      top: -100%;
     }

	 100%{
		top:4%;
     }
 }

  

.logoico:not(:target){
	-webkit-animation-name: ico;
	-webkit-animation-duration:1s;
	-webkit-animation-iteration-count: 1;
	animation-name: ico;
	animation-duration:1s;
	animation-iteration-count: 1;
	
}

  

css3创建动画

标签:blog   io   ar   div   on   log   as   tt   class   

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

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