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

18.25in x 12.75in

1977

She shares her golden jewels with the sweet song bird who hears her stories and secrets.

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