/* Hiding Cursor when move out of website viewport */ body:hover .cursor { opacity: 1; } .cursor { pointer-events: none; }
An Image on the Screen of Being

81cm x 56cm

1996

Caught in the middle of light and evil, she turns her face to the light because our innate nature will inevitably lead us to the light.  Goodness and love prevail.

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