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

32in x 17in

2000

Every human being, even the beautiful ones, has tendencies of predatory animals inside and can harm others unless they resist and evolve.

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