Files
ClassContent/历届学生/font-end-nine/每天上课/2022-06-07/index.html
2024-09-27 02:06:13 +08:00

28 lines
643 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>Document</title>
<style>
.box {
width: 200px;
height: 200px;
background: red;
transition: all 10s ease;
}
.box:hover {
height: 150px;
width: 150px;
border-radius: 100%;
background: #000;
transform: rotate(180deg);
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>