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

22in x 15in

1978

Captivated by the aromatic fragrance, she cannot see the danger lurking all around her.

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