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

30.75in x 22in

2004

We bring the colors that destiny uses to paint us with…our actions and intentions are the pallet of colors that change our destiny.

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