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

32in 20in

1987

Inspired by beauty and harmony, even the predator is subdued in peace.

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