继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Animation

ABOUTYOU
关注TA
已关注
手记 477
粉丝 67
获赞 359

说明:

复合属性,检索或设置对象所应用的特效属性。(如果是多组属性值,以逗号分割)

注意:如果只提供一个<' time'> 参数,则为 <' animation-duration '> 的值定义;如果提供二个<' time'> 参数,第二个为 <' animation-delay '> 的值定义。

语法:

animation个的取值、含义

webp

animation的属性

兼容性:

animation的兼容性

webp

兼容

动画:


        .main{ width: 400px; height: 400px;border:1px solid rgb(200, 200, 200); position: relative;}

        .yuan{ width: 40px; height: 40px; border-radius: 50%; background-color: rgb(243, 223, 8); margin: 20px auto 0;

            opacity: 1;animation: move 3s ease-out 1s forwards; transform: translate(80px);}

        @keyframes move{

            0%{opacity: 1;width:40px;height: 40px;transform: translate(0)}

            25%{opacity: 0.5;width: 30px;height: 30px;transform: translate(20px)}

            50%{opacity: 0;width: 20px;height: 20px;transform: translate(40px)}

            75%{opacity: 0.5;width: 30px;height: 30px;transform: translate(60px)}

            100%{opacity: 1;width: 40px;height: 40px;transform: translate(80px)}

        }



<div class="main"><div class="yuan"></div></div>





作者:超爱吃小龙虾
链接:https://www.jianshu.com/p/fdedb01aeb77


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP