Html5_animation动画

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>

    <style>
        @keyframes rotate {
            from {
                /* 动画刚开始,角度 */
                transform: rotate(0deg);
            }
            to {
                /* 动画结束时,角度 */
                transform: rotate(360deg);
            }
        }

        @keyframes change {
            0% {
                /* 动画刚开始,div的宽高 */
                width: 200px;
                height: 200px;
            }
            50% {
                /* 动画执行一半时,div的宽高 */
                width: 100px;
                height: 400px;
            }
            100% {
                /* 动画执行完毕时,div的宽高 */
                width: 200px;
                height: 200px;
            }
        }
    </style>

</head>
<body>

<!-- animat_rotate:动画名;6s:总执行时间;linear:平滑;infinite:无限重复(去了,只执行一次)-->
<div style="animation: rotate 5s linear infinite; width: 200px;height:200px; margin: 50px 50px 50px 50px; background: url('http://file.popoho.com/wzfzl/20160706/q0rafysiogkco140510110S8-25.jpg') no-repeat;"></div>

<!-- animat_rotate:动画名;6s:总执行时间;linear:平滑;infinite:无限重复(去了,只执行一次)-->
<div style="animation: change 5s linear infinite; width: 500px;height: 500px; margin: 100px 100px 100px 100px; background-color: red"></div>

</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值