JSFiddle - React, Tailwind, and code Playground

by luka kupunia

HTML

<div></div>

CSS

div {
  width: 50px;
  height: 50px;
  background: red;
  animation: animation 2s cubic-bezier(0.84, 0.01, 0, 1) forwards;
}
@keyframes animation{
  0% { transform: translate(200px,200px);}
  100% { transform: translate(0,0);}
}