<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<style>
.stage{
width: 200px;
height: 200px;
background-color: #acffa5;
}
.box1{
width: 50px;
height: 50px;
background-color: #b2caff;
animation: rotate 2s linear infinite;
}
.box1:hover{
animation-play-state: paused;
}
@keyframes rotate {
0%{
transform: rotate(0);
}
100%{
transform: rotate(360deg);
}
}
</style>
<body>
<div class="stage">
<div class="box1"> 1</div>
</div>
</body>
</html>
animation: name duration timing-function delay iteration-count direction fill-mode play-state;