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

css3动画曲线运动

时间:2017-06-21 16:45:30      阅读:633      评论:0      收藏:0      [点我收藏+]

标签:ati   log   har   out   ima   tran   char   orm   code   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        .box{width: 50px;height: 120px;margin-top: 500px;margin-left: 500px}
        .box2{width: 50px;height: 120px;background: black;}
        .box{ animation: top1 1s ease-out forwards}
        .box2{ animation:  right1 1s ease-in forwards ;}

       @keyframes top1 {
          0%{transform: translateY(0px) ;}
          100%{transform: translateY( -200px) ;}
      }
        @keyframes right1 {
            0%{transform: translateX(0px) rotate(0deg);}
            100%{transform: translateX(200px) rotate(90deg);}
        }
    </style>
</head>
<body>
<div class="box">
    <div class="box2"></div>
</div>
</body>
</html>

 

css3动画曲线运动

标签:ati   log   har   out   ima   tran   char   orm   code   

原文地址:http://www.cnblogs.com/xiaobaibubai/p/7060189.html

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