JSFiddle - React, Tailwind, and code Playground

by ilyador

HTML

<h1>
dfsdffsdfdf
</h1>
<img src="http://placekitten.com/200/200">

CSS

img {
    -webkit-animation-duration: 3s;
    -webkit-animation-name: slidein;
  }

  @-webkit-keyframes slidein {
    from {
      transform: scale(1.0);
    }

    to {
      transform: scale(2.0);
    }
  }