CSS3中Animation动画属性用法详解

给自己一个目标,给自己一个希望,给自己一份爱一份温暖,只为今天快乐,不为昨天烦恼,自己照顾好自己,我的朋友。早安!

要使用animation动画,先要熟悉一下keyframes,Keyframes的语法规则:命名是由”@keyframes”开头,后面紧接着是这个“动画的名称”加上一对花括号“{}”,括号中就是一些不同时间段样式规则。不同关键帧是通过from(相当于0%)、to(相当于100%)或百分比来表示(为了得到最佳的浏览器支持,建议使用百分比),如下定义一个简单的动画:

CSS Code复制内容到剪贴板
  1. @keyframesmyfirst/*定义动画名*/
  2. {
  3. 0%{background:red;left:0px;top:0px;}/*定义起始帧样式,0%可以换成from*/
  4. 25%{background:yellow;left:200px;top:0px;}
  5. 50%{background:blue;left:200px;top:200px;}
  6. 75%{background:green;left:0px;top:200px;}
  7. 100%{background:red;left:0px;top:0px;}/*定义结束帧样式,100%可以换成to*/
  8. }

@keyframes定义好了,要使其能发挥效果,必须通过animation把它绑定到一个选择器,否则动画不会有任何效果。下面列出了animation的属性:

下面设置上述的所有属性

CSS Code复制内容到剪贴板
  1. animation-name:myfirst;
  2. animation-duration:5s;
  3. animation-timing-function:linear;
  4. animation-delay:1s;
  5. animation-iteration-count:infinite;
  6. animation-direction:alternate;
  7. animation-play-state:running;

上述所有代码可以如下简写:

CSS Code复制内容到剪贴板
  1. animation:myfirst5slinear2sinfinitealternate;
  2. animation-play-state:running;

浏览器兼容性

Internet Explorer 10、Firefox 以及 Opera 支持 @keyframes 规则和 animation 属性。

Chrome 和 Safari 需要前缀 -webkit-。

注意:Internet Explorer 9,以及更早的版本,不支持 @keyframe 规则或 animation 属性。

下面给出上面介绍的关于keyframes和animation属性的完整代码示例:

XML/HTML Code复制内容到剪贴板
  1. <!DOCTYPEhtml>
  2. <htmllang="en">
  3. <head>
  4. <metacharset="UTF-8">
  5. <title>animation演示</title>
  6. <style>
  7. div
  8. {
  9. width:100px;
  10. height:100px;
  11. background:red;
  12. position:relative;
  13. animation-name:myfirst;
  14. animation-duration:5s;
  15. animation-timing-function:linear;
  16. animation-delay:1s;
  17. animation-iteration-count:infinite;
  18. animation-direction:alternate;
  19. animation-play-state:running;
  20. /*SafariandChrome:*/
  21. -webkit-animation-name:myfirst;
  22. -webkit-animation-duration:5s;
  23. -webkit-animation-timing-function:linear;
  24. -webkit-animation-delay:1s;
  25. -webkit-animation-iteration-count:infinite;
  26. -webkit-animation-direction:alternate;
  27. -webkit-animation-play-state:running;
  28. }
  29. @keyframesmyfirst/*定义动画名*/
  30. {
  31. 0%{background:red;left:0px;top:0px;}/*定义起始帧样式,0%相当于from*/
  32. 25%{background:yellow;left:200px;top:0px;}
  33. 50%{background:blue;left:200px;top:200px;}
  34. 75%{background:green;left:0px;top:200px;}
  35. 100%{background:red;left:0px;top:0px;}/*定义结束帧样式,100%相当于to*/
  36. }
  37. @-webkit-keyframesmyfirst/*SafariandChrome*/
  38. {
  39. 0%{background:red;left:0px;top:0px;}
  40. 25%{background:yellow;left:200px;top:0px;}
  41. 50%{background:blue;left:200px;top:200px;}
  42. 75%{background:green;left:0px;top:200px;}
  43. 100%{background:red;left:0px;top:0px;}
  44. }
  45. </style>
  46. </head>
  47. <body>
  48. <p>该实例在InternetExplorer9及更早IE版本是无效的。</p>
  49. <div></div>
  50. </body>
  51. </html>

上面代码演示了一个正方形沿着一个正方形轨迹运动,基数次按正方向运动,偶数次按反方向运动,运动过程中还带有颜色变化。具体效果,读者可以自行运行代码观察。

以上就是CSS3中Animation动画属性用法详解。只有正直、忠诚、宽容和拥有仁爱之心的人才能够达到真正意义上的成功。不具备这些品质的人,就无法体会到成功的滋味,因为成功和幸福一样,不在于外在的富有,而在于内心的感受。更多关于CSS3中Animation动画属性用法详解请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
css动画效果之animation的常用样式

CSS3 animation – steps 函数详解

10分钟入门CSS3 Animation

css3的动画特效之动画序列(animation)

CSS3 animation如何实现简易幻灯片轮播特效