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.

alt text

Any suggestions?

link|improve this question

I don't understand the purpose of this logo. Whats it for? There is no tooltip or link... – Blankasaurus Sep 7 '10 at 13:26
@Blankasaurus: It's to celebrate Google's 12th birthday. – Christian Sep 7 '10 at 16:33
@Blankasaurus Just Google being Google – Ben Sep 7 '10 at 16:34
Is the logo supposed to be doing something? It's just an image no? – Peter Sep 8 '10 at 7:56
2  
@Peter heres a link to the Particle Logo – Alpine Feb 26 '11 at 7:34
show 5 more comments
feedback

2 Answers

up vote 2 down vote accepted

the source on github on line 153 says:

if (!v & amp; & amp; window.location.href.indexOf("#") == -1) {

it's supposed to be

if (!v && window.location.href.indexOf("#") == -1) {
link|improve this answer
It seems, jsbeautifier.org screwed the JS up, but it's still does not work. I will fix the JS everywhere and update the gist. – zengr Sep 7 '10 at 8:12
fixed, the culprit was firebug. I was copying JS from HTML edit tag mode. – zengr Sep 7 '10 at 8:23
feedback

Just wondering, did you put and tags around it? Seems to work fine on my Firefox 3.6. I copied it to http://michaelhendrickx.com/googledots.html

I'm not sure what you mean with the "changing dynamically". It seems to be the coordination values of the particles.

link|improve this answer
2  
michaelhendrickx.com/googledots.html is not working on my browser. I am running Firefox 3.6.8 and Safari. – zengr Sep 7 '10 at 8:02
feedback

Your Answer

 
or
required, but never shown

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