分析以下代码
<style>
.box {
transform: translate(-50%, -50%) scale(1) rotate(0deg);
background-color:blue;
animation-name: fadein;
animation-duration: 2s;
animation-fill-mode:forwards;
animation-timing-function: ease-in-out;
}
@keyframes fadein {
from {
opacity:0;
transform: translate(-50%, -50%) scale(1) rotate(0deg);
}
to {
opacity: 1;
transform:
translate(-50%, -50%) scale(2) rotate(360deg);
}
}
</style>
<div class="box"></div>
下列描述不正确的是

