How did Google make the Google I/O 2011 website - the drag drop and the animation in the countdown?

link|improve this question

73% accept rate
3  
1  
Right click > View source. Read source and linked javascript files. – Dan Grossman Feb 1 '11 at 7:05
If you speak about a website as example link it: google.com/events/io/2011 – the_nakos Feb 1 '11 at 7:08
1  
@the_nakos: edited the post. Thanks – Prakhar Feb 1 '11 at 7:11
feedback

1 Answer

up vote 2 down vote accepted

Short answer: they use Box2d http://box2d-js.sourceforge.net/

If you move the logo under the balls from counter, the balls will jump on its top too. As jleedev is linked too: http://www.google.com/events/io/2011/static/js/io.js this is the source file that makes that happen in this case.

But it is always better first look in the source and check out what can you find out from it yourself (as I and two others done it here) and try to clone it. If something don't work then you come here, show you code and ask why it isn't working. You can learn a lot by coding yourself.

link|improve this answer
1  
Thanks a lot. I'll keep that in mind next time :) – Prakhar Feb 1 '11 at 7:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.