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

css animation和keyframes

时间:2017-09-25 13:29:54      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:nat   log   animation   0ms   pre   alter   order   osi   relative   

keyframes应用在animation上,animation应用在元素上。

<html>
<style type="text/css">
.div1 {
 width:100px;height:100px;border:1px solid #000;position:relative;
 animation : move 800ms ease-out infinite alternate;
}

@keyframes move {
 from {top:0px;}
 to   {top:100px;}
}
</style>

<body>
<div class="div1">
</div>
</body>
</html>

  

css animation和keyframes

标签:nat   log   animation   0ms   pre   alter   order   osi   relative   

原文地址:http://www.cnblogs.com/chenweichu/p/7591200.html

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