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

23in x 17in

1988

Based on free will, our actions and intentions become our palette of colors.  We paint our own destiny.

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