[jQuery] Re: Let a container follow page scrolling, easing

2007-11-18 Thread [EMAIL PROTECTED]
i used this function: function toolAutoScroll(){ var pageScrl = $(document).scrollTop(); var toolScrl = $('#mainToolbar').offset({ scroll: false }); $('#fixedDiv').animate({top: pageScrl+50},800, 'easeOutBounce', function(){

[jQuery] Re: Let a container follow page scrolling, easing

2007-11-18 Thread [EMAIL PROTECTED]
i used this function: function toolAutoScroll(){ var pageScrl = $(document).scrollTop(); var toolScrl = $('#mainToolbar').offset({ scroll: false }); $('#fixedDiv').animate({top: pageScrl+50},800, 'easeOutBounce', function(){

[jQuery] Re: Let a container follow page scrolling, easing

2007-11-18 Thread Arne-Kolja Bachstein
Mhhh, this doesn't work the way I want it either... or I am too dumb to change it to my needs. Greetings Arne On Nov 18, 4:26 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: i used this function: function toolAutoScroll(){ var pageScrl = $(document).scrollTop(); var

[jQuery] Re: Let a container follow page scrolling, easing

2007-11-18 Thread [EMAIL PROTECTED]
sorry for double post :D anyway, take a look here: http://www.iamntz.com/experiment/autoscroll.html i forgot to mention: you need dimension plugin (mandatory!) and ease plugin for a nice effect (optional) On Nov 18, 7:25 pm, Arne-Kolja Bachstein [EMAIL PROTECTED] wrote: Mhhh, this doesn't work