CSS 动画示例

一个动画示例,球沿着边框跑:

代码如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>CSS  animation</title><!--20180308 10:01-->
    <style type="text/css">
        div{
            width:200px;
            height:200px;
            border:1px solid red;
            margin:120px auto;
        }
        span{
            display: inline-block;
            width:20px;
            height:20px;
            background: orange;
            border-radius: 100%;
            animation:movearound 5s linear 2s infinite alternate;
            -webkit-animation:movearound 5s linear 2s infinite alternate;/*infinite是无限循环,数字是循环几次*/
            -moz-animation: movearound 5s linear 2s infinite alternate;/*alternate是奇数次的时候向前播放,偶数次向后播放*/
            -o-animation: movearound 5s linear 2s infinite alternate;
animation-fill-mode:forwards;/*forwards是动画结束时保持最后一刻的状态;backwords是在动画有延迟播放的情况下,开始播放时迅速具有初始帧;both是元素同时具有forwards和backwords的属性'None是默认回到初始帧*/ } @keyframes movearound{ 0%{ transform:translateX(0); } 25%{ transform:translateX(180px); } 50%{ transform:translate(180px,180px); } 75%{ transform:translate(0,180px); background: blue; } 100%{ transform:translateY(0); background: red; } } </style> </head> <body> <div><span></span></div> </body> </html>

  

转载于:https://www.cnblogs.com/potato-lee/p/8526715.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值