css 过度动画

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			.div{
				width: 300px;
				height: 46px;
				font-size: 12px;
				cursor: pointer;
				background: #eee;				
				-webkit-transition: all 3s ease-out;
				-moz-transition: all 3s ease-out;
				-ms-transition: all 3s ease-out;
				transition: all 3s ease-out;
			}
			.div:hover{
				background: pink;
				font-size: 16px;
			}
		</style>
	</head>
	<body>
		<div class="div">我是填充内容...</div>
	</body>
</html>

猜你喜欢

转载自blog.csdn.net/guohao326/article/details/87969699