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

25in x18in

2004

The peacock is pecking off his beautiful ornate feathers so that he may take flight - liberating to soar.

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