JSFiddle - React, Tailwind, and code Playground
HTML
<img src="https://cs7060.vk.me/c540102/v540102730/28f29/5QJ0ueZ40lY.jpg">
JavaScript
document.addEventListener("contextmenu", function(e){
e.target.style.display = "none";
var el = document.createElement("div");
el.style.cssText = "width:"+e.target.width+"px; height:"+e.target.height+"px; background:red";
document.body.appendChild(el);
});