So this question will probably get downvoted but I figure someone might be able to help.
The effect I am looking for is the blue block hovering up and down like a balloon, and the shadow growing and shrinking beneath it, as the block goes up and down, on a loop.

Any ideas on how to program this, or is anyone aware of a tutorial/plugin that might accomplish?
You can do it with jQuery or either with CSS3, your call, I’ll show you both:
CSS3 demo
CSS3:
Now, with our dear jQ… just use a .png image for the shadow instead of my ugly
box-shadow🙂jQuery demo
To explain:
On every odd iteration
liwill be set to0, and on every other to1thanks to%(Modulo operator).0in Javascript can be represented asfalse, great for the use of a ternary operator that will check for two Boolean values e.g:[true or false statement] ? [do this if true] : [do that if false] ;!li ? 150:200means if!li(= 0 = is false) use200else use150Additionally:
and CSS: