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

23.25in x 17.75in

1988

The stars, who dwell on heaven's exalted stage, mock the prognosticators of our age; Take heed, hold fast the rope of mother with, Those augurs all distrust their own presage.  (Khayyam)

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