<!DOCTYPE html>
<html lang="en">

<head>
	<meta charset="UTF-8">
	<title>Document</title>

	<style type="text/css">
		.box {
			width: 200px;
			height: 400px;
			background-color: red;
			transition: width 1s linear,
				height 1s linear 1s,
				background-color 1s linear 2s;
		}

		.box:hover {
			width: 600px;
			height: 800px;
			background-color: green;
		}
	</style>
</head>

<body>

	<div class="box"></div>
</body>

</html>

相关文章:

  • 2021-11-29
  • 2022-12-23
  • 2021-06-15
  • 2021-08-29
  • 2021-08-22
  • 2022-12-23
  • 2021-12-20
猜你喜欢
  • 2021-11-13
  • 2022-12-23
  • 2022-12-23
  • 2022-01-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案