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

23in x 17in

1988

Life is transient and there is no escaping the ultimate destiny. They have gone, we will go, others will come and go.

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