/* Hiding Cursor when move out of website viewport */ body:hover .cursor { opacity: 1; } .cursor { pointer-events: none; }
Time's Endless Grip

23in x 17in

1991

And those who husbanded the golden grain, And those who flung it to the winds like rain, Alike to no such aureate earth are turn'd As, buried once, men want dug up gain.  (Khayyam)

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