Thank you.... but only one row is needed

 $('#tullio_content img').fadeIn(2000);

the power of jquery!

On 7 Nov, 01:18, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> > I have discoverde the very best jQuery Cycle Plugin: i want to create
> > a fading with a few image... alll work fine but it is possible to
> > apply the fade effect at the first image also? Thank You.... Ciao!
>
> Hi Andrea,
>
> The Cycle Plugin does not currently support that behavior, but with
> jQuery v1.2 and later you could probably do this to achieve that
> effect:
>
> $(document).ready(function() {
>     var slideTimeout = 4000; // 4 sec
>     $('#slideshow').cycle({
>         delay: slideTimeout,
>         timeout: slideTimeout
>     })
>     .find('img:eq(0)')
>     .hide()
>     .queue(function() {
>         var $this = $(this);
>         setTimeout(function() {
>             $this.dequeue();
>         }, slideTimeout);
>     })
>     .fadeIn('slow');
>
> });
>
> Mike

Reply via email to