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

23in x 17in

1989

O bewitching Beauty, come for the sake of my heart! And with your splendor find a solution to my difficulties. Bring a pitcher of wine and let us drink together. Before the time when they fashion pitchers from our clay. ~ Khayyam

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