JSFiddle - React, Tailwind, and code Playground
HTML
<div id="one" class="animateMe">some content</div>
<div id="two" class="animateMe">some content</div>
<div id="three" class="animateMe">some content</div>
<div id="four" class="animateMe">some content</div>
<div id="five" class="animateMe">some content</div>
CSS
#one {
background-color: green;
}
#two {
background-color: red;
}
#three {
background-color: blue;
}
#four {
background-color: orange;
}
#five {
background-color: yellow;
}
JavaScript
$(document).ready(function () {
$('.animateMe').click(function () {
$(this).animate({
opacity: '0.15'
},
"slow");
});
});