JSFiddle - React, Tailwind, and code Playground

HTML

<img src="http://www.sunhome.ru/UsersGallery/wallpapers/78/gomer-simpson-kartinka.jpg" width="300" height="200">

CSS

img{
    cursor: not-allowed;
}

JavaScript

document.querySelector("img").onmouseover = function(){
    this.src = "http://gifakt.ru/wp-content/uploads/2012/10/access-denied.jpg";
}