google-doodle

How is Google's buckyball doodle implemented?

I've had a look at the markup it creates, namely a bunch of images for the atoms, and a big background image, which is used rather strangely to create the bonds. There are some things that I can't work out: Where the javascript is What makes the bonds at the rear narrower Why the atoms also have the bond background applied ...

How is the new google logo (moving balls) implemented?

I got the code for the new google.com's doodle: http://gist.github.com/567948 The problem is, all the values in the <div id="hplogo"> is changing dynamically, but not when I copy the code in my local machine. It seems only JS + DIV, anything missing? But now able to replicate it on my local machine. Any suggestions? ...

Is readable source code available for google's bouncy ball doodle?

If you haven't seen the current google doodle, you should check it out. Basically, it's a bunch of balls that fly from the mouse. Its coded differently in IE to other browsers. In IE, it's done with . characters, whereas other browsers use border-radius. I've found the source code within the page (included below for completeness, aft...