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

81cm x 51cm

1988

Unless we join together in harmony and happiness, we can't push sadness away. Let us awaken, and take a breath before the breath of dawn. Because the dawn will breath long after our last breath. (Khayyaam)

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