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

28.5in x 19.75in

1977

The philosopher is inspired by angelic visitors who captivate his thoughts and imagination.

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