JSFiddle - React, Tailwind, and code Playground
by lollero
HTML
<div id="blocker"></div>
<div id="contentcontain">contentcontain</div>
CSS
#blocker {
position: absolute;
top: 0px;
left: 0px;
z-index: 10;
width: 100px;
height: 70px;
background: red;
opacity: 0.8;
}
#contentcontain {
position: relative;
z-index: 5;
}
JavaScript
$(function() {
$('#contentcontain').animate({ marginTop: '40px' }, 7000, function()Â {
$(this).css('zIndex', 15);
});
});