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

28in x 20in

2000

"I came to an assembly to discuss important matters.  The toxic atmosphere was full of mistrust, anguish, grudges and angry faces." Master Farshchian

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