CSS3 animation动画

匿名 (未验证) 提交于 2019-12-02 16:56:17

1、@keyframes 定义关键帧动画
2、animation-name 动画名称
3、animation-duration 动画时间
4、animation-timing-function 动画曲线 linear(匀速)|ease(缓冲)|steps(步数)
5、animation-delay 动画延迟
6、animation-iteration-count 动画播放次数 n|infinite
7、animation-direction 动画结束后是否反向还原 normal|alternate
8、animation-play-state 动画状态 paused(停止)|running(运动)
9、animation-fill-mode 动画前后的状态 none(缺省)|forwards(结束时停留在最后一帧)|backwards(开始时停留在定义的开始帧)|both(前后都应用)
10、animation:name duration timing-function delay iteration-count direction;同时设置多个属性

理解练习:
1、风车动画
2、loading动画

3、人物走路动画

<!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <title>走路动画</title>     <style type="text/css">                 .box{             width:120px;             height:180px;             border:1px solid #ccc;                         margin:50px auto 0;             position:relative;             overflow:hidden;                     }          .box img{             display:block;             width:960px;             height:182px;             position: absolute;             left:0;             top:0;             animation:walking 1.0s steps(8) infinite;                     }         @keyframes walking{             from{                 left:0px;             }              to{                 left:-960px;             }         }     </style> </head> <body>     <div class="box"><img src="images/walking.png"></div> </body> </html> 

动画中使用的图片如下:

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!