JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div class="box"></div>

CSS

div.box {
  width: 100px;
  height: 100px;
  background: red;
  animation: luka .8s cubic-bezier(0, 0.2, 1, 0.24) forwards;
}
@keyframes luka {
  100% {
    transform: translateX(400px);
  }
}