/* Hiding Cursor when move out of website viewport */ body:hover .cursor { opacity: 1; } .cursor { pointer-events: none; }
The Fourth Heaven (Ascension)

40in x 32in

2015

The fourth heaven is the world of positive souls.  Therein dwell the followers of love, peace, and truth. Despite the ego, the spirit prevails.

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