JSFiddle - React, Tailwind, and code Playground
by Lan Jiang
HTML
<!-- click with background highlight -->
<h3>Formation</h3>
<p>beaucoup de text</p>
<h3>Expériencr</h3>
<p>beaucoup de text</p>
<h3>Compétence</h3>
CSS
.highlight{
background-color: lightgrey;
}
JavaScript
$('h3').click(function(){
$('p').addClass('highlight');
setTimeout(function(){
$('p').removeClass('highlight');
}, 100);
});