美文网首页
跳动的球

跳动的球

作者: Ertsul | 来源:发表于2018-05-29 20:28 被阅读49次
效果动画.gif

animation

  • animation-name:动画名
  • animation-duration:动画执行时间
  • animation-interaction-count:1/2/.../infinate; 执行动画次数
  • animation-fill-mode:forwards; 终止状态
  • animation-direction:alternate; 动画结束后的执行方向
  • animation-timing-function:linear/ease/ease-in/ease-out/ease-in-out; 动画过渡效果
  • animation-delay:延时时间

代码

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>demo08_ball</title>
    <style>
    * {
        margin: 0px;
        padding: 0px;
    }

    section {
        width: 50%;
        height: 600px;
        margin: 10px auto;
        border: 1px solid silver;
        border-radius: 2px;
        text-align: center;
        position: relative;
    }

    div#ball {
        width: 200px;
        height: 200px;
        border: 0 none;
        background-image: radial-gradient(180px at center 10px, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
        border-radius: 200px;
        position: absolute;
        left: 100px;
        /*动画名称*/
        animation-name: ball;
        /*动画时间*/
        animation-duration: 0.6s;
        /*终止状态*/
        animation-fill-mode: forwards;
        /*执行顺序:结束后反方向*/
        animation-direction: alternate;
        /*执行次数*/
        animation-iteration-count: infinite;
        /*过渡效果*/
        animation-timing-function: ease-in;
    }

    div#shadow {
        width: 160px;
        height: 30px;
        background-color: rgba(125, 125, 125, 0.6);
        border-radius: 160px / 30px;
        position: absolute;
        top: 300px;
        left: 130px;
        animation-name: shadow;
        animation-duration: 0.6s;
        animation-fill-mode: forwards;
        animation-direction: alternate;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in;
    }

    @keyframes ball {
        0% {
            top: 20px;
        }
        100% {
            top: 115px;
        }
    }

    @keyframes shadow {
        0% {
            width: 160px;
            height: 30px;
            top: 300px;
            left: 120px;
        }
        100% {
            width: 0px;
            height: 0px;
            top: 315px;
            left: 200px;
        }
    }
    </style>
</head>

<body>
    <section>
        <div id="ball"></div>
        <div id="shadow"></div>
    </section>
</body>

</html>

相关文章

  • 跳动的球

    animation animation-name:动画名 animation-duration:动画执行时间 an...

  • 【随笔】跳动的羽毛球

    我喜欢黄昏 村子里人气沸腾 小孩儿、老大妈、老爷们,还有小猫小狗出门闲游... 放风筝、牵气球,摸着吃饱的圆溜溜的...

  • 让球自由跳动吧!

    这夏天啊! 日常温度三十,可是也不能阻挡我对自由的向往,我喜欢网球,喜欢它在空中飞跃跳动。 对网球的爱啊!...

  • 人生中的欢乐球球

    今天一直在玩一个游戏,叫欢乐球球。 就是一个不停跳动的球,让玩家用手不停的移动,而且前面不停的出现阻拦球球的灰色板...

  • 球场

    跳动的球 上上下下 按响球场的每个按键 滚动的球 抱着头只顾放肆向前 琴键起起落落 飞起的球 享受着临空俯瞰的高度...

  • 《一个人的午后》

    暖阳洒落在身上,让一切都变得温暖,所有的不开心 也随之解开,坐在乒乓球附近的草坪上,耳边传来乒乓球在球桌上跳动而产...

  • 忆孔庙-儿时的少年宫

    红墙绿瓦中 掩藏着几张 外表斑驳的球桌 乒乓球跳动的音符 谱写着你青葱的岁月 古老的编钟 犹如垂暮的老者 悄无声息...

  • “头腾大战”再升级,字节跳动争食游戏蛋糕

    图穷匕见,字节跳动终于要吃游戏的饭了。 2月18日,抖音上线了一款音乐节奏小游戏“音跃球球”,据罗超频道(欢迎关注...

  • 字节跳动的游戏野心-千氪

    图穷匕见,字节跳动终于要吃游戏的饭了。 2月18日,抖音上线了一款音乐节奏小游戏“音跃球球”,据罗超频道体验,该游...

  • 篮球的怨言

    当世界都安静以后,你抱着一只篮球奔向操场。空空如也的操场,瞬间有了你和球,球在你的手下来回跳动运转。 其实,篮球一...

网友评论

      本文标题:跳动的球

      本文链接:https://www.haomeiwen.com/subject/cisjbxtx.html