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

72 cm x 50 cm

1975

Book of Genesis 39:1–20. When the women of Egypt criticize the behavior of Potiphar’s wife for trying to seduce the Prophet Joseph, she throws a party for them; just as they are about to peel their dessert oranges, she summons Joseph into the hall. The women are so distracted by his beauty that they cut their hands, now persuaded that the seductress can hardly be blamed for her actions.

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