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

32in X 23in

1982

As we carelessly walk the path set before us, a simple thorn can thwart us in unexpected directions.

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