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

29in x 20in

Timeless

The angel of justice is bewildered and lamenting all of the injustice in the world which is due to man's misuse of his free-will.

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