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

28 in x 20 in

1983

"I believe, the horse is a majestic creature, symbol of spirituality and courage."  Master Farshchian

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