CSS3动画

1、@keyframes创建动画

这里写图片描述

示例:

        .move {
            width:100px;
            height:100px;
            background:#00ff21;
            position:relative;
            animation:move,5s,infinite;
            -webkit-animation:move 5s infinite; /* Safari and Chrome */
        }
        @keyframes move {
            from {
                top: 0px;
            }
            to {
                top:300px;
            }
        }

查看效果

2、将动画捆绑到选择器

这里写图片描述
示例:

        .move {
            width: 100px;
            height: 100px;
            background: #00ff21;
            position: relative;
            animation-name: move;
            animation-delay: 1s;
            animation-direction: alternate;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
            animation-play-state: running;
            /* Safari and Chrome: */
            -webkit-animation-name: move;
            -webkit-animation-duration: 5s;
            -webkit-animation-timing-function: linear;
            -webkit-animation-delay: 1s;
            -webkit-animation-iteration-count: infinite;
            -webkit-animation-direction: alternate;
            -webkit-animation-play-state: running;
        }

        @keyframes move {
            0% {
                background: #00ff21;
                left:0px;
                top:0px;
            }

            25% {
                background: #ffd800;
                left:200px;
                top:0px;
            }

            50% {
                background: #0094ff;
                left:200px;
                top:200px;
            }

            100% {
                background: #ff6a00;
                left:0px;
                top:0px;
            }
        }

查看效果

3、详细说明:

animation-name

引用块内容

animation-duration

引用块内容

animation-timing-function

这里写图片描述

animation-delay

引用块内容

animation-iteration-count

引用块内容

animation-direction

这里写图片描述

animation-play-state

引用块内容

animation-fill-mode

引用块内容

参考内容:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值