JSFiddle - React, Tailwind, and code Playground

by achudars

HTML

<img src="http://www.dreamworksanimation.com/css/logo2.png">

CSS

body {
    background: black;
}
img {
    position:relative;
    animation:mymove 5s infinite;
    -o-animation:mymove 5s infinite; /* Safari and Chrome */
    -moz-animation:mymove 5s infinite; /* Safari and Chrome */
    -webkit-animation:mymove 5s infinite; /* Safari and Chrome */
}
@keyframes mymove
{
from {top:200px;}
to {top:0px;width: 300px;}
}

@-webkit-keyframes mymove /* Safari and Chrome */
{
from {top:200px;}
to {top:0px; width: 300px;}
}