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

31in x20in

1992

She is of the earth and the celestial forces; she is harmony and she is beauty.

next work
Hardest Trial (Prophet Abraham and Prophet Ismael)
scroll for more
gallery
// Hiding Cursor when move out of viewport $("a").mouseenter(function () { $(".cursor").click(); }); $("a").mouseleave(function () { $(".cursor").click(); });