JSFiddle - React, Tailwind, and code Playground
HTML
<div id="div1"></div>
CSS
#div1 {
height:100px;
width:100px;
background-color:silver;
position:relative;
-webkit-animation-name:animacao;
-webkit-animation-duration:3s;
-webkit-animation-iteration-count:1;
-webkit-animation-delay:0.5s;
-webkit-animation-fill-mode: forwards;
}
@-webkit-keyframes animacao {
from {
left:0px
}
to {
left:100px
}
}