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

40in x 30in

1985

In the book of Genesis it is said: "Then God said, 'Let the water be filled with many living things,  and let there be birds to fly in the air over the earth.'  

So God created the large sea animals.  He created all the many living things in the sea  and every kind of bird that flies in the air."  Genesis 1:20-31

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