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

23in x 17in

1989

Worldy wares that sustain needs, justify all your efforts and deeds. Excess wealth's petty to the wise. So don't squander life's real prize.(Khayyaam)

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