小节
程序员文章站
2022-02-13 20:08:37
...
animation
<!DOCTYPE html>
<html>
<head>
<title>html.xuexi</title>
<meta charset="utf-8">
<style type="text/css">
body{
background: blue;
}
.demo{
width: 300px;
height: 20px;
background: #fff;
margin:200px auto;
}
.div1{
background: red;
height: 20px;
animation:demo 4s;}
@keyframes demo{
0%{width:0;}
50%{width:250px;}
100%{width:500px;}
}
</style>
</head>
<body>
<div class="demo">
<div class="div1"></div>
</div>
</body>
</html>
上一篇: SpringBoot中Controller接收参数几种方式
下一篇: android动画基础