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

16in x 12in

1984

In Greek mythology, the winged horse Pegasus was born of Poseidon and Medusa after her decapitation. While drinking from the fountain Peirene, Pegasus was captured by the brave hero Bellerophon, who rode him into battle against the Chimera.

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