<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
width: 200px;
height: 100px;
background-color: pink;
/* transition: 变化的属性 花费的时间 运动曲线 何时开始; */
transition: width .5s ease 1s;
}
div:hover {
width: 400px;
}
</style>
</head>
<body>
<div>
</div>
</body>
</html>