37 lines
720 B
HTML
37 lines
720 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;
|
|
border-radius: 100%;
|
|
background: red;
|
|
animation: anm 2s linear infinite;
|
|
|
|
}
|
|
|
|
@keyframes anm {
|
|
0% {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
100% {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="box">
|
|
你好
|
|
</div>
|
|
</body>
|
|
|
|
</html> |