/* Hiding Cursor when move out of website viewport */ body:hover .cursor { opacity: 1; } .cursor { pointer-events: none; }
Spring's in the Air

19in x 13in

1984

Inspired by the energy of renewal of the spring solstice.

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