JSFiddle - React, Tailwind, and code Playground

HTML

<div>bye</div>

CSS

body {
    font-size: 3em;
}

JavaScript

var el = document.querySelector('div'),
    st = el.style;
st.opacity = 0;
st.transition = 'opacity 2s';
st.opacity = 1;