JSFiddle - React, Tailwind, and code Playground
by mo_esmp
HTML
<div id="example">An example</div>
CSS
#example { opacity: .5; transition: opacity 500ms 500ms;}
#example.visible { opacity: 1; }
JavaScript
$('#example').hover(function(){
$(this).addClass('visible');
})