首页 > Web开发 > 详细

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

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

<!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动画怎样能从下往上慢慢升上去

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

(2)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!