欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

小节

程序员文章站 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>
相关标签: animation