vote up 0 vote down star

Possible Duplicate:
Twitter notification ajax bar, how did they do it?

can someone help be deconstruct the twitter notification bar that slides down? I can't seem to bring all the elements together to mimick it.

I think its really cool and would love to learn how they did it (css/html/javascript/jqeury).

Is it advanced javascript or something one can work through?

flag

44% accept rate
2  
Isn't this just a duplicate of your earlier question? stackoverflow.com/questions/1580122/… – brianpeiris Oct 19 at 17:34

closed as exact duplicate by DJ, Bill the Lizard Oct 19 at 23:40

2 Answers

vote up 1 vote down

The answers on your previous question should be helpful. And this guy's site.

link|flag
vote up 1 vote down

I would start by building your div that contains the information you want to show, positioning above the view of the window, and then animating it into view:

var height = '25px';
$('<div class="notification">This is a notification!</div>').css({
  position        : 'absolute',
  backgroundColor : 'red',
  top             : '-'+height,
  height          : height
}).appendTo('body').animate({
  top: '0'
}, 'slow');
link|flag

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