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

30 in x 20 in

1983

Ancient philosophers believed that all matter was made up of four elements: earth, water, air, and fire.

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