e媒网络

一切皆可能 e媒网络 http://www.eMay.net

博客园 首页 新随笔 联系 订阅 管理

代码如下:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>CSS3 Animation</title>
<style type="text/css">
@keyframes myani
{
from {
    background: blue;
    width:300px;
    height:0;
    left:0;
    top:0;
    }
to {
    background: yellow;
    width:0;
    height:300px;
    left:300px;
    top:300px;
    }
}
div{
    width:300px;
    height:0;
    background-color:blue;
    animation: myani 5s;
    animation-iteration-count:infinite;
    position:relative;
}
</style>
</head>
<body>
<div></div>
</body>
</html>

 

课后作业:

1.复制上述代码,预览查看效果。

2.读懂上述代码。

posted on 2020-05-25 16:53  e媒网络技术团队  阅读(274)  评论(0编辑  收藏  举报