JSFiddle - React, Tailwind, and code Playground
by jakie8
HTML
<img src="http://placehold.it/250x250" title="My Image" alt="This is a brief description">
<img src="http://placehold.it/250x250" title="Another Thing" alt="This is a different description">
<div id="blanket">
<div class="modal">
<h1></h1>
<p></p>
</div>
</div>
CSS
body{
padding:30px;
}
#blanket{
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
background:rgba(0,0,0,0.5);
display:none;
}
.modal{
background:white;
width:300px;
padding:20px;
margin:0 auto;
height:200px;
position:absolute;
top:50%;
margin-top:-100px;
left:50%;
margin-left:-155px;
}
JavaScript
$('img').click(function(){
$('#blanket h1').text(this.title);
$('#blanket p').text(this.alt);
$('#blanket').fadeIn();
});
$('#blanket').click(function(){
$(this).fadeOut();
});