CSS3 animation实现逐帧动画效果
css3里面的animation属性非常强大,自己用的比较少,最近有次面试就刚好被问到了,趁现在有时间就对animation做一个小。实现一个逐帧动画的demo作为练习
animation属性一览
因为animation属性比较多,然后在w3c上看有点蛋疼,干脆也做了一份导图,以后想查看,就一目了然了
使用animation实现逐帧动画
熟悉了animation的属性之后,得找个简单的小项目实现下,逐帧动画好有意思,先跑一个满足下自己
思路很简单,就是给元素一个雪碧图的背景,然后添加的帧动画更改background-position,关键代码
- @keyframes run{
- from{
- background-position: 0 0;
- }
- to{
- background-position: -1540px 0 ;
- }
- }
- div{
- width:140px;
- height:140px;
- background: url(run.png) ;
- animation-namerun;
- animation-duration:1s;
- animation-iteration-count:infinite;
- }
跑起来后我们发现,每帧动画之间帧动画都是滑动,并不是我们要的效果,为什么呢?
原来animation默认以ease方式过渡,它会在每个关键帧之间插入补间动画,所以动画效果是连贯性的
知道原因就好办了,解决思路就是
- @keyframes run{
- 0%, 8%{ /动作一/ }
- 9.2%, 17.2%{ /动作二/ }
- ...
- }
step1动作之间停留8帧,0%设置动作一,动作一结束在8%
step2动作之间过渡1.2帧,9.2%设置动作二,动作二结束在17.2%
完整代码
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>css3逐帧动画</title>
- <style>
- @keyframes run{
- 0%, 8%{ background-position: 0 0; }
- 9.2%, 17.2%{ background-position: -140px 0; }
- 18.4%, 26.4%{ background-position: -280px 0 ; }
- 27.6%, 35.6%{ background-position: -420px 0 ; }
- 36.8%, 44.8%{ background-position: -560px 0 ; }
- 46%, 54%{ background-position: -700px 0 ; }
- 55.2%, 63.2%{ background-position: -840px 0 ; }
- 64.4%, 72.4%{ background-position: -980px 0 ; }
- 73.6%, 81.6%{ background-position: -1120px 0 ; }
- 82.8%, 90.8%{ background-position: -1400px 0 ; }
- 92%, 100%{ background-position: -1540px 0 ; }
- }
- @-webkit-keyframes run{
- 0%, 8%{ background-position: 0 0; }
- 9.2%, 17.2%{ background-position: -140px 0; }
- 18.4%, 26.4%{ background-position: -280px 0 ; }
- 27.6%, 35.6%{ background-position: -420px 0 ; }
- 36.8%, 44.8%{ background-position: -560px 0 ; }
- 46%, 54%{ background-position: -700px 0 ; }
- 55.2%, 63.2%{ background-position: -840px 0 ; }
- 64.4%, 72.4%{ background-position: -980px 0 ; }
- 73.6%, 81.6%{ background-position: -1120px 0 ; }
- 82.8%, 90.8%{ background-position: -1400px 0 ; }
- 92%, 100%{ background-position: -1540px 0 ; }
- }
- div{
- width:140px;
- height:140px;
- background: url(blog/754767/201606/754767-20160601000042992-1734972084.png) ;
- animation:run 1s infinite;
- -webkit-animation:run 1s infinite;
- animation-fill-mode : backwards;
- -webkit-animation-fill-mode : backwards;
- }
- </style>
- </head>
- <body>
- <div></div>
- </body>
- </html>
还有一个实现方法,就是利用steps(),就是帧之间的阶跃动画,这个在w3c里面没有写,先贴个图
由上图可知:
steps(1,start):动画一开始就跳到 100% 直到这一帧(不是整个周期)结束
steps(1,end):保持 0% 的样式直到这一帧(不是整个周期)结束
也可以直接设置 animation-timing-function:step-start/step-end
step-start效果等同于steps(1,start),step-end效果等同于steps(1,end)
最终效果,因为录制的问题可能有点卡顿,有兴趣的同学可以直接复制代码去跑下
完整代码
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>css3逐帧动画</title>
- <style>
- @keyframes run{
- 0%{
- background-position: 0 0;
- }
- 8.333%{
- background-position: -140px 0;
- }
- 16.666%{
- background-position: -280px 0 ;
- }
- 25.0%{
- background-position: -420px 0 ;
- }
- 33.333%{
- background-position: -560px 0 ;
- }
- 41.666%{
- background-position: -700px 0 ;
- }
- 50.0%{
- background-position: -840px 0 ;
- }
- 58.333%{
- background-position: -980px 0 ;
- }
- 66.666%{
- background-position: -1120px 0 ;
- }
- 75.0%{
- background-position: -1260px 0 ;
- }
- 83.333%{
- background-position: -1400px 0 ;
- }
- 91.666%{
- background-position: -1540px 0 ;
- }
- 100%{
- background-position: 0 0 ;
- }
- }
- @-webkit-keyframes run{
- 0%{
- background-position: 0 0;
- }
- 8.333%{
- background-position: -140px 0;
- }
- 16.666%{
- background-position: -280px 0 ;
- }
- 25.0%{
- background-position: -420px 0 ;
- }
- 33.333%{
- background-position: -560px 0 ;
- }
- 41.666%{
- background-position: -700px 0 ;
- }
- 50.0%{
- background-position: -840px 0 ;
- }
- 58.333%{
- background-position: -980px 0 ;
- }
- 66.666%{
- background-position: -1120px 0 ;
- }
- 75.0%{
- background-position: -1260px 0 ;
- }
- 83.333%{
- background-position: -1400px 0 ;
- }
- 91.666%{
- background-position: -1540px 0 ;
- }
- 100%{
- background-position: 0 0 ;
- }
- }
- div{
- width:140px;
- height:140px;
- background: url(754767/201606/754767-20160601000042992-1734972084.png) ;
- animation:run 1s steps(1, start) infinite;
- -webkit-animation:run 1s steps(1, start) infinite;
- }
- </style>
- </head>
- <body>
- <div></div>
- </body>
原文地址
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持狼蚁SEO。
长沙网站设计
- 如何自己建一个网站 自己想建个网站,怎么建
- 如何制作网站免费建站 创建网站免费注册
- html简单网页代码 html简单网页代码超链接
- dreamweaver网页制作 dreamweaver网页制作模板
- 上海网站建设 上海网站建设制作微信
- 如何制作网站和网页 如何制作一个网页
- html网页制作代码大全 端午节html网页制作代码大
- app开发公司 app开发公司前十名
- html网页制作 html网页制作文字居中
- app制作一个需要多少钱 请人制作一个app多少钱
- 成都网站制作 成都网站制作维护
- 百度建一个网站多少钱 百度做个公司网站要多少
- html+css网页制作成品 web网页制作成品css+javascrip
- html网页制作案例 html网页设计案例
- html+css网页制作成品 web网页制作成品css+javascrip
- 个人网站模板 个人网站模板HTML