Files
ClassContent/历届学生/陈一航/2020-03-23/index.html
2024-09-27 02:06:13 +08:00

32 lines
601 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>过渡</title>
<style>
.box {
width: 100px;
height: 100px;
border: 1px solid #000;
animation: Dh 3s ease infinite reverse;
}
@keyframes Dh {
from {
background: blue;
}
to {
background: green;
}
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>