Files
ClassContent/历届学生/吴欣阳/每天课程/2021-06-01/keyframes.html
2024-09-27 02:06:13 +08:00

55 lines
1.1 KiB
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>keyframes</title>
<style>
* {
margin: 0;
padding: 0;
}
.box {
width: 200px;
height: 200px;
background: red;
animation: test 2s ease infinite alternate;
}
@keyframes test {
0% {
width: 200px;
height: 200px;
background: red;
}
25% {
width: 250px;
height: 250px;
background: yellow;
}
50% {
width: 300px;
height: 300px;
background: green;
}
100% {
width: 350px;
height: 350px;
background: blue;
}
}
</style>
</head>
<body>
<div class="box">
</div>
</body>
</html>