JSFiddle - React, Tailwind, and code Playground

by Marius Jopen

HTML

<img id="logo" src="http://wikieducator.org/images/thumb/0/01/Ubuntu_logo_copyleft_1.svg/520px-Ubuntu_logo_copyleft_1.svg" />

CSS

#logo {
     animation: cssAnimation 3s infinite;
     -webkit-animation: cssAnimation 3s infinite;
     -moz-animation: cssAnimation 3s infinite;
 }
 @-webkit-keyframes cssAnimation {
     0%, 100% {
         width:100px;
     }
     50% {
         width:200px;
         margin-left: -50px;
         margin-top: -50px;
     }
 }