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

80cm x 52cm

2002

The angel is praising the Magistery of alchemy, wisdom and knowledge.

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