JSFiddle - React, Tailwind, and code Playground

by jonahe

HTML

<h1>
hello world
</h1>

CSS

h1 {
  transition:
    transform 1s 1s,
    opacity 2s 0s;
}


h1:hover {
  transform: scale(1.5, 1.5) translateX(200px);
  opacity: 0.5;
}