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

60cm x 40cm

1973

The Ball no Question makes of Ayes and Noes, But Right or Left, as strikes the Player goes; And he that toss'd Thee down into the Field, He knows about it all - He knows - He knows!  (Khayyam)

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