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

39in x 33in

2011

All creation praises God, even if this praise is not expressed in human language.

Psalms 148:7-10  Praise the Lord from the earth, you sea monsters and all deeps, fire and hail, snow and frost, stormy wind fulfilling His command!  Mountains and all hills, fruit trees and all cedars! Wild animals and all cattle, creeping things and flying birds!

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