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

23in x 17in

1998

This blade of death will surely pierce the King and the Pauper alike.   Both will die and turn to dust.

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