<html>
<head>
<meta charset='utf-8'>
<title>animation</title>
<style type='text/css'>
p{
width:100px;
height:100px;
background-color:antiquewhite
}
p:hover{
animation-duration:1s;
animation-delay:200ms;
animation-name:bilibili;
animation-iteration-count:infinite;
animation-direction:alternate
}
@keyframes bilibili{
from{
width:100px;
height:100px;
background-color:#ffec32
}
50%{
width:130px;
height:130px;
background-color:#3b88ff
}
75%{
width:160px;
height:160px;
background-color:#58ff4a
}
to{
width:200px;
height:200px;
background-color:#ffad2a
}
}
</style>
</head>
<body>
<p></p>
</body>
</html>