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

23in x 17in

1989

Mourning the perfection that once was, shattered by the mortal coil that took away what was whole, what was alive.

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