JSFiddle - React, Tailwind, and code Playground
by Drath
HTML
<img src="http://vaughnroyko.com/wp-content/themes/vaughnroyko/images/vaughn.png" />
CSS
img {
-webkit-animation: zoom-in-out 4s ease-in-out infinite;
}
@-webkit-keyframes zoom-in-out {
0% {
-webkit-transform: scale(0.8);
}
50% {
-webkit-transform: scale(1.0);
}
100% {
-webkit-transform: scale(0.8);
}
}