/* Hiding Cursor when move out of website viewport */ body:hover .cursor { opacity: 1; } .cursor { pointer-events: none; }
To Plead for the Sins of Man

17in x 13in

1984

Turn this painting and observe as the angel decends to help humankind or passes through the land, then ascends to the heavens to plea for mercy.

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