/* Hiding Cursor when move out of website viewport */ body:hover .cursor { opacity: 1; } .cursor { pointer-events: none; }
Vengence

32in x 20in

An allegory of vengeance.  Sometimes we want to see injustice avenged, but a predator with an insatiable appetite can fill the most beautiful atmosphere with darkest terror.

next work
Viciously Intertwined
scroll for more
gallery
// Hiding Cursor when move out of viewport $("a").mouseenter(function () { $(".cursor").click(); }); $("a").mouseleave(function () { $(".cursor").click(); });