JSFiddle - React, Tailwind, and code Playground

HTML

<div class="container">
    <div class="image">
        <img src="http://www.ducati.es/cms-web/upl/MediaGalleries/732/MediaGallery_732515/Color_M-1200_Red_01_1067x600.jpg" alt=""/>
    </div>
    <div class="image-top">
        <img src="http://www.ducati.es/cms-web/upl/MediaGalleries/732/MediaGallery_732515/Color_M-1200_Red_01_1067x600.jpg" alt=""/>
    </div>
</div>

CSS

.container {
    width:100%;
    height:auto;
    position:relative;
    
}
.image {
    width:400px;
    height:300px;
    overflow:visible;
    opacity:0.5;
    
}
.image-top {
    width:400px;
    height:300px;
    overflow:hidden;
    position:absolute;
    top:0;
    left:0;
}