JSFiddle - React, Tailwind, and code Playground

by Brodingo

HTML

<div></div>

CSS

div {
    position: relative;
    width: 100px;
    height: 100px;
    background-color: #ddd;
    -moz-animation: weee 0.5s alternate infinite cubic-bezier(0.25, 10.5, 0.25, 1.0);
    -webkit-animation: weee 0.5s alternate infinite cubic-bezier(0.25, 10.5, 0.25, 1.0);
}

@-moz-keyframes weee {
    from {left: 0} to {left: 50px}
}

@-webkit-keyframes weee {
    from {left: 0} to {left: 50px}
}