Files
ClassContent/历届学生/front-end-team/每天课程/2022-03-23/过渡.html
2024-09-27 02:06:13 +08:00

25 lines
537 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>过渡</title>
<style>
.box {
width: 100px;
height: 100px;
background: red;
transition: all 0.5s
}
.box:hover {
width: 200px;
background: blue;
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>