JSFiddle - React, Tailwind, and code Playground
HTML
<h4 id="titre">
Titre
</h4>
CSS
#titre { width: 200px;
position: absolute;
left: -200px;
}
JavaScript
$(document).ready(function(){
$('#titre').animate({"left":"0"},1000);
});
<h4 id="titre">
Titre
</h4>
#titre { width: 200px;
position: absolute;
left: -200px;
}
$(document).ready(function(){
$('#titre').animate({"left":"0"},1000);
});