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

23in x 17in

1988

Ah, that Spring should vanish with the Rose! That Youth's sweet-scented manuscript should close! The Nightingale that in the branches sang, Ah, whence, and whither flown again, who knows? (Khayyaam)

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