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

27in x 19in

1983

Inspired by the beauty and unity in nature.

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