码迷,mamicode.com
首页 > 移动开发 > 详细

css动画属性--小球移动

时间:2017-07-20 10:13:49      阅读:403      评论:0      收藏:0      [点我收藏+]

标签:inf   -name   class   abs   需要   padding   direction   back   gradient   

主体只有一个div

<body>
    <div></div>
</body>

样式部分(测试:目前的浏览器还是需要加前缀才能兼容)

<style>
    * {
        margin: 0;
        padding: 0;
    }
    
    div {
        position: absolute;
        top: 0;
        left: 0;
        width: 100px;
        height: 100px;
        border-radius: 50px;
        border: 2px solid red;
        background: -webkit-radial-gradient(80px 80px, circle, #fff, #00f);
        background: -ms-radial-gradient(80px 80px, circle, #fff, #00f);
        /* 动画名字 */
        animation-name: move;
        /* 动画时间 */
        animation-duration: 3s;
        /* 动画的类型 */
        animation-timing-function: linear;
        /* 动画播放次数 */
        animation-iteration-count: infinite;
        /* 动画是否允许反向 */
        animation-direction: normal;
        /* 简写为 animation: move 2s linear 0s infinite normal;*/

    }
    
    @-webkit-keyframes move {
        0% {
            left: 0px;
            top: 0px;
        }
        25% {
            left: 150px;
            top: 150px;
        }
        50% {
            left: 300px;
            top: 300px;
        }
        75% {
            left: 450px;
            top: 450px;
        }
        100% {
            left: 600px;
            top: 600px;
        }
    }
    
    @-ms-keyframes move {
        0% {
            left: 0px;
            top: 0px;
        }
        25% {
            left: 150px;
            top: 150px;
        }
        50% {
            left: 300px;
            top: 300px;
        }
        75% {
            left: 450px;
            top: 450px;
        }
        100% {
            left: 600px;
            top: 600px;
        }
    }
    </style>

如有不足之处,请广提意见,诚恳学习.

css动画属性--小球移动

标签:inf   -name   class   abs   需要   padding   direction   back   gradient   

原文地址:http://www.cnblogs.com/caoruichun/p/7209037.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!