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

23in x 17in

1988

Lament not fortune's want of constancy; But (arise) up! And seize her favors ere they flee; If fortune always cleaved to other people, How could a turn of luck have come to thee?(Khayyaam)

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