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

12in x 18in

1980

During the 1978/79 Islamic Revolution, not all of Farshchian's birds were free.  Shackles weigh down the helpless bird as she watches others take flight around her. Unable to fly away, her colorless body represents her hopelessness.

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