JSFiddle - React, Tailwind, and code Playground

by António Almeida

HTML

<div id="images">
    <div id="image">
        <div class="image">         
            <img src="images/test-image.png" width="275px" height="200px" />
        </div>
        <div class="text">
            <span>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
        </div>
    </div>
</div>

CSS

#images {
    width: 275px;
    height: 200px;
}

#image .image {
    width: 275px;
    height: 200px;
}
#image .text {
    display: none;
    background: #000;
}

#image span {
    color: #ccc;
    width: 265px;
    height: 40px;
    padding: 1px;
}

JavaScript

$(document).ready(function () {
    $("#image img").click(function () {
        $("#image .text").slideToggle();
    });
});