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

28x20 in

1991

Humans in danger of being over-taken by the ego: lust, selfish desires and pride.

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