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

26in x 19in

1975

Knowledge is infinite:  the more we learn, the more we are in awe of the design of creation.

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