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

39in x 28in

1977

Oh the joy of spring solstice. The blossoms, the music, the dance and the song.

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