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

25in x 17in

1991

What gain did Heaven get from making me? What kudos did it earn from my demise? Yet I have never heard from anyone. Why I was brought here, and why taken away? (Khayyaam)

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