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

23.625x13.375 in

1988

The jug did once, like me love's sorrows taste, And bonds of beauty's tresses once embraced. This handle, which you see upon its side, has many a time twined round a slender waist! (Khayyaam

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