JSFiddle - React, Tailwind, and code Playground

HTML

<img data-bind="attr: { src: AlbumPicture }" src="http://apolyonstorage.blob.core.windows.net/files/a39c7361-62f5-4637-b9d1-f817c44bffad.jpg">

CSS

img{
    height:165px;
    width:165px;
    opacity:0.4;
    transition: all linear 1s;
}

img:hover{
    opacity:1;
}