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

23in x 17in

1970

Viciously Intertwined: Everyone is bothering everyone - when humankind is unconscious dwelling purely in the crudest vibrations

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