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

16in x 12in

1985

Some people like the fox, will use trickery and with hard-heartedness become a tormentor and an intimidator.

next work
An Image on the Screen of Being
scroll for more
gallery
// Hiding Cursor when move out of viewport $("a").mouseenter(function () { $(".cursor").click(); }); $("a").mouseleave(function () { $(".cursor").click(); });