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

32in x 19in

2002

In the book of life, earthly and heavenly encounters are woven together to tell the tale of our days.

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