/* Hiding Cursor when move out of website viewport */ body:hover .cursor { opacity: 1; } .cursor { pointer-events: none; }
Yet She's All Smiles

27in x 18in

2002

"I remember a great lady, who despite being ill with cancer and slowly fading away, always seemed to smile in her eyes." ~ Master Farshchian

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