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

28in x 19in

1976

A principle of contradiction in nature: without opposites, there is no cognition. Darkness is known when light is known: hence, consciousness.

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