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

23in x 17in

1988

And if the wine you drink, the lip you press,End in the nothing all things end in yes-Then fancy while thou art, thou art but whatThou shalt be:  nothing.  Thou shalt not be less. (Khayyaam)

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