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

32in x 22in

1989

Enjoying freedom.  Birds are meant to fly, not be held in captivity.

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