码迷,mamicode.com
首页 > 其他好文 > 详细

Animations动画和Keyframes关键帧

时间:2017-09-27 17:36:31      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:tran   颜色   inf   csharp   charset   bic   iter   关键帧   form   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<style>
    body {
        display: flex;              /* 使用Flex布局 */
        justify-content: center;    /* 水平居中 */
    }
    .ball {
        width: 100px;
        height: 100px;
        border-radius: 50%;         /* 把正方形变成圆形*/
        background-color: #FF5722;  /* 设置颜色为橙色*/
        animation: bounce 0.5s cubic-bezier(.5,0.05,1,.5);
        animation-direction: alternate;  //alternate(2,4,6)反向动画
        animation-iteration-count: infinite;
    }
    @keyframes bounce {
        from { transform: translate3d(0, 0, 0);     }
        to   { transform: translate3d(0, 200px, 0) rotateX(45deg); }
    }
</style>
<body>
<div class="ball"></div>
<script>
</script>
</body>
</html>

  

Animations动画和Keyframes关键帧

标签:tran   颜色   inf   csharp   charset   bic   iter   关键帧   form   

原文地址:http://www.cnblogs.com/jiebba/p/7602668.html

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