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

32in x 22in

1996

The deer cuddles the beast, and its song flows softly.  The melody mesmerizes the enchanted.

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