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

css之动画篇

时间:2016-08-15 20:48:26      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

div{
animation-name:toRight;
}

  animation-name规定动画的名称。

@keyframes toRight{
from{
width:120%;
}
to{
width:140%;
}
}

  keyframes定义动画,一般不用from和to,直接用百分比来定义过程。

div{
animation-duration:3s;
}

  animation-duration规定动画的时长。

div{
animation-timing-function:ease-in;
}

  animation-timing-function规定动画的速度曲线,常用的有ease、ease-in、ease-in-out。

div{
animation-delay:2s;
}

  该属性规定动画延迟的时间。

div{
animation-iteration-count:infinite;
}

  该属性定义动画的播放次数,一般用infinite.

div{
animation-direction:altermate;
}

  该属性规定是否应该轮流反向播放动画。

div{
animation-play-state:paused;
}

  该属性规定动画是正在运行或停止。

div{
animation-fill-mode:forwards;
}

  该属性规定对象动画时间之外的状态。

div{
animation:toRight 3s infinite 3s;
}

  animation属性是动画的缩写属性,也是最常用的一个动画属性。

css之动画篇

标签:

原文地址:http://www.cnblogs.com/11lang/p/5774186.html

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