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

26in x 18in

2003

Across time and culture, we share a connection and deep fascination with the stars and celestial bodies.

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