JSFiddle - React, Tailwind, and code Playground
HTML
<input/>
<button>show</button>
CSS
input { display: none; }
JavaScript
$('button').click(function() {
$('input').show(10000, 'linear');
});
<input/>
<button>show</button>
input { display: none; }
$('button').click(function() {
$('input').show(10000, 'linear');
});