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

26in x 18in

1974

We provide the colors and ingredients, efforts, actions, plans and intentions that will make our future destiny.

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