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

28in x 21in

1970

Beauty and harmony of nature. Inspired by the Cenar tree that was near Farshchian's childhood home.

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