为了账号安全,请及时绑定邮箱和手机立即绑定

animation-fill-mode

标签:
Html/CSS

今天用zepto做一个h5的recruitPage的时候用到了animation-fill-mode,简单记录一下

animation-fill-mode - 指定动画执行前后如何为目标元素应用样式。

允许值:forwards, backwards, both, none

默认值:none

none:回到动画还未开始前的状态

backwards:动画回到第一帧的状态

forwards:动画停留在结束时的状态

both: 根据 animation-direction 轮流应用 forwards 和 backwards 规则。

eg:

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
        <style>
            .box{                width: 100px;                height: 100px;                background: red;                animation-delay: 5s;                -webkit-animation:boxan 1s linear both;
               
            }
            @-webkit-keyframes boxan{
                0%{-webkit-transform:translateX(0);background: yellow;}
                50%{-webkit-transform:translateX(40px);}
                100%{-webkit-transform:translateX(100px);background: blue;}
            }        </style>
    <title>animation:both</title></head><body>
    <div class="box"></div></body></html>



作者:张靖bibibi
链接:https://www.jianshu.com/p/234921094167


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消