[jQuery] Re: New and better demos

2008-01-30 Thread caruso_g
Wow, you rocks, I would ever not even imagined that solution... :P I will try to implement it. But, what do you mean with //check the settings? Thanks again. On Jan 30, 1:20 am, Ariel Flesler [EMAIL PROTECTED] wrote: Ugh.. (function( $ ){ var last = 0, $pane = $('#container'),

[jQuery] Re: New and better demos

2008-01-30 Thread Ariel Flesler
I meant that you need to replace the '...' with the duration/settings that you want. If you have doubts, the demo exemplifies the settings pretty well. $pane should be the container that you scroll, $items the pictures, don't forget to set the 'overflow' of the $pane to 'hidden' or 'auto'. Cheers

[jQuery] Re: New and better demos

2008-01-29 Thread Ariel Flesler
Hi all Thanks a lot for your replies! @Jack I don't fully understand what you mean, could you explain it some more ? or maybe find an example (can be flash or anything). @caruso ScrollTo can scroll to any kind of element, not only LIs. Check the old demo, the first input field uses a

[jQuery] Re: New and better demos

2008-01-29 Thread Alexandre Plennevaux
in fact i just looked at the old demo and i find it quite nice looking too! (me love colours :) at least it's not webtwooish, which is a quality in my eyes :) http://www.freewebs.com/flesler/jQuery.ScrollTo/index.old.html On Jan 29, 2008 4:56 PM, caruso_g [EMAIL PROTECTED] wrote: Hi, thanks

[jQuery] Re: New and better demos

2008-01-29 Thread caruso_g
Hi, thanks a lot for these great plugins. They are awesome. But I would make you a feature request, if possible, and, when you can. It would be great to be able to scroll to any kind of elements into the containner, and not only list items. Sometimes it happens that one can't know in advance

[jQuery] Re: New and better demos

2008-01-29 Thread caruso_g
Thanks Ariel, I didn't be able to use it for the following project ( http://www.bonsai-studio.net/clients/lamoy/wessel02/albums/page2/index.html ) so I had to make some code to the ground up (think about I am just a designer... :P ). So here I am, I have a feature request! Can you implement a

[jQuery] Re: New and better demos

2008-01-29 Thread Ariel Flesler
Hi caruso, your situation remainds me of this: http://www.freewebs.com/flesler/jQuery.ScrollShow/ It's a plugin that actually uses ScrollTo. It's called ScrollShow: http://plugins.jquery.com/project/ScrollShow I kinda abandoned the plugin and it stayed in beta stage, but it automatically does

[jQuery] Re: New and better demos

2008-01-29 Thread Ariel Flesler
Ugh.. (function( $ ){ var last = 0, $pane = $('#container'), $items = $pane.find('li'); $('#next').bind('click', +1, handler ); $('#prev').bind('click', -1, handler ); function handler( e ){ var next = last + e.data; if( $items[next] ){ last = next;

[jQuery] Re: New and better demos

2008-01-28 Thread Alexandre Plennevaux
love it! On Jan 28, 2008 8:49 PM, Ariel Flesler [EMAIL PROTECTED] wrote: Hi everyone Right before going on vacations, I improved the demos of both ScrollTo and LocalScroll. I Applied a common style to all of them. And simplified the code of LocalScroll's to make it work entirely with the

[jQuery] Re: New and better demos

2008-01-28 Thread Karl Swedberg
Brilliant! Love the demos. Really slick. I hadn't realized how versatile you made these plugins. Terrific job! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jan 28, 2008, at 2:49 PM, Ariel Flesler wrote: Hi everyone Right before going on

[jQuery] Re: New and better demos

2008-01-28 Thread Richard D. Worth
Sweet stuff! Really nice demos. Thanks. - Richard On Jan 28, 2008 2:49 PM, Ariel Flesler [EMAIL PROTECTED] wrote: Hi everyone Right before going on vacations, I improved the demos of both ScrollTo and LocalScroll. I Applied a common style to all of them. And simplified the code of

[jQuery] Re: New and better demos

2008-01-28 Thread Jack Killpatrick
Thanks for the additional demos, they opened my eyes to a few usages that I hadn't thought of when looking at the axis-based demos. Very nice. I'm wondering: could this be adapted to do velocity based (for lack of a better word) scrolling, like the iphone and ipod touch do? I'm thinking