up vote 1 down vote favorite
share [g+] share [fb]

I love the animation running when you promote (or later restore) a search result on google. This can be done by clicking the little arrows at the end of a result item. The item is moved up or down with the rest of the page still visible. Check it out.

Did anyone work with the corresponding javascript or program a similar thing?

link|improve this question

70% accept rate
1  
also, when you remove a result it disappears into a cloud that breaks open. – Robert Greiner Nov 5 '09 at 16:33
great too! Didn't see this one – Kai Nov 5 '09 at 16:40
feedback

1 Answer

up vote 2 down vote accepted

A very quick right click after I click the remove button shows me the image below. Therefore, they must animate through the "frames" of the image by changing its position vertically.

For the promote/demote thing, it's probably something similar to this, but with the movement done automatically: http://www.jqueryui.com/demos/draggable/#sortable

EDIT: Each search result is in its own list item. Judging by what changes I see in Firebug, the items that move are changed to absolute positioning, and animated up/down. When they are in place, the HTML code is switched around (so that, say, the third list item is now the first) and the positioning removed.

alt text

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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