/* Hiding Cursor when move out of website viewport */ body:hover .cursor { opacity: 1; } .cursor { pointer-events: none; }
The Eternal Secrets Neither of Us Knows

20in x 28in

1962

"Neither you nor I know the secrets of eternity." Master Farshchian

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