I wanna know is it using the power of HTML5 and jquery any sample example can i get for this ?

link|improve this question

Judging from the other Google doodle questions, I don't think this question is too localized. The community has shown a keen interest in the techniques being used by Google and if it is localized, it is very much so for the programmer community which resides here. – Aron Rotteveel May 1 '11 at 11:30
@Aron thank you ! – Viswanathan Iyer May 1 '11 at 11:31
feedback

closed as too localized by Bart Kiers, KooiInc, Caspar Kleijne, interjay, Graviton May 3 '11 at 13:48

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

4 Answers

up vote 3 down vote accepted

When examining the code, you will actually see that the doodle consists of multiple images:

The beautified JavaScript is here: http://pastebin.com/r8s9H2jA

It seems to use JavaScript to create the loupe and uses a combination of CSS / JavaScript to position the animating elements at the right position.

So in short:

  • HTML5: It's JavaScript combined with CSS. This, by itself, is not limited to the HTML5 spec, so no.
  • jQuery: no.
link|improve this answer
and what a beautified javascript that is ! – Viswanathan Iyer May 1 '11 at 11:21
It's not using <canvas>. – Matti Virkkunen May 1 '11 at 11:21
@Matti read to quick indeed, corrected example! The css classname appeared in the search for canvas – Aron Rotteveel May 1 '11 at 11:23
feedback

I inspected it and it as simple as a "lens zoom" effect like this : http://www.dailycoding.com/Uploads/2011/03/imageLens/demo.html with a big image and some animated gifs on top of it for the animations :)

link|improve this answer
+1 thanks for link look like the same ! – Viswanathan Iyer May 1 '11 at 11:20
feedback

No, it's not using any features new in HTML5 or jQuery as far as I can tell (unless you count the scale transition it's using when showing the loupe thing). I seriously doubt Google would put something as big as jQuery on their front page...

It does the round "image mask" effect by having essentially three copies of the doodle, and building a sort-of rounded rectangle out of them that looks something like this (ASCII art go)

__|¯¯¯¯|__
|        |
|        |
|__    __|
  |____|

This is then overlaid by the loupe image, and its thick border makes it seem like we're seeing a circular part of the doodle image.

link|improve this answer
feedback

There is a great jQuery plugin for making something like that: http://www.mind-projects.it/projects/jqzoom/

link|improve this answer
feedback

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