JSFiddle - React, Tailwind, and code Playground

by Sarangi

HTML

<div></div>

CSS

div {
    width: 100px;
    height: 100px;
    background: red;
    position: relative;
    -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */
   
    animation-delay: 2s;
    animation-duration: 5s;
    animation-iteration-count: 3;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes mymove {
    from {left: 0px;}
    to {left: 200px;}
}
/* General Syntax */
@keyframes mymove {
    from {left: 0px;}
    to {left: 200px;}
}