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

23in x 17in

1990

Ah, fill the Cup: what boots it to repeat. How time is slipping underneath our feet. Unborn to-morrow, and dead yesterday. Why fret about them if to-day be sweet! (Khayyam)

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