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

27in x 19.75

2006

We are composed of angelic (divine) and animal (instinctual and base) thoughts and currents. Greed, envy, anger, fear, vengeance, jealousy etc. stem from our animal nature.

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