32 lines
601 B
HTML
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> |