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

css3动画怎样能从下往上慢慢升上去

时间:2017-11-02 14:29:46      阅读:565      评论:0      收藏:0      [点我收藏+]

标签:fill   doctype   html   animation   pos   anim   and   position   htm   

<!DOCTYPE html>
<html>
<head>
<style>
div
{
width:100px;
height:100px;
background:red;
position:absolute;
animation:myfirst 5s;
-webkit-animation:myfirst 5s;
animation-fill-mode: forwards;
}
@-webkit-keyframes myfirst /* Safari and Chrome */
{
0% {background:red; left:500px; bottom:50px;}
25% {background:red; left:500px;height:130px;bottom:50px;}
50% {background:red; left:500px; height:160px;bottom:50px;}
75% {background:red; left:500px;height:190px; bottom:50px;}
100% {background:red; left:500px; height:210px;bottom:50px;}
}
</style>
</head>
<body>
<div></div>
</body>
</html>

css3动画怎样能从下往上慢慢升上去

标签:fill   doctype   html   animation   pos   anim   and   position   htm   

原文地址:http://www.cnblogs.com/yangyang03/p/7771719.html

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