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

23in x 17in

1970

Everyone bothers everyone when humankind is unconscious and dwells purely in the crudest vibrations.

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