[jQuery] Re: how to build a image cycle?

2008-01-27 Thread DoZ

...I meant "no rewind".


On 24 Gen, 22:38, DoZ <[EMAIL PROTECTED]> wrote:
> Thank you!!
> Another question - and I've tried to do, but I didn't success - is on
> building a "real cycle" (last > first, with no forward); I really
> don't understand the code for doing it!
>
> On 24 Gen, 13:35, Brad Hile <[EMAIL PROTECTED]> wrote:
>
> > To loop Jcarousel you need to set the wrap option and cycle the auto
> > option
> > The following will show 5 images(visible:5), advancing 1 image (scroll:
> > 1) every 2 seconds (auto:2) and when it reaches the last image wrap
> > back to the first (wrap:last).
>
> > // set up the carousel
> > jQuery('#mycarousel').jcarousel({
> >   visible: 5,
> >   auto: 2,
> >   scroll:1,
> >   animation: 'slow',
> >   wrap: 'last'
> >   });
>
> > check out the following for explanations and more 
> > optionshttp://sorgalla.com/projects/jcarousel/#Getting-Started
> > You can control the size of the image displayed in the CSS file and I
> > would imagine you could turn off the arrows
>
> > Hope that helps.
>
> > Brad
> > PS Cycle plugin is really cool but not sure what sort of performance
> > hit (if any) running multiple instances would cause
>
> > On Jan 24, 3:11 am, DoZ <[EMAIL PROTECTED]> wrote:
>
> > > Hi all!
> > > I "simply" need to build an image rotation/cycle; it has to be
> > > vertical, automatic, "looping", and the images have to be in  tags.
>
> > > Jcarousel could be quite enough for me (even if I don't need arrows),
> > > but I don't understand how to make the 
> > > loop.http://sorgalla.com/projects/jcarousel/
>
> > > ScrollShow could be good too, but ther's no 
> > > documentation(!)http://flesler.blogspot.com/search/label/jQuery.ScrollShow
>
> > > Can anybody help me??


[jQuery] Re: how to build a image cycle?

2008-01-24 Thread DoZ

Thank you!!
Another question - and I've tried to do, but I didn't success - is on
building a "real cycle" (last > first, with no forward); I really
don't understand the code for doing it!



On 24 Gen, 13:35, Brad Hile <[EMAIL PROTECTED]> wrote:
> To loop Jcarousel you need to set the wrap option and cycle the auto
> option
> The following will show 5 images(visible:5), advancing 1 image (scroll:
> 1) every 2 seconds (auto:2) and when it reaches the last image wrap
> back to the first (wrap:last).
>
> // set up the carousel
> jQuery('#mycarousel').jcarousel({
>   visible: 5,
>   auto: 2,
>   scroll:1,
>   animation: 'slow',
>   wrap: 'last'
>   });
>
> check out the following for explanations and more 
> optionshttp://sorgalla.com/projects/jcarousel/#Getting-Started
> You can control the size of the image displayed in the CSS file and I
> would imagine you could turn off the arrows
>
> Hope that helps.
>
> Brad
> PS Cycle plugin is really cool but not sure what sort of performance
> hit (if any) running multiple instances would cause
>
> On Jan 24, 3:11 am, DoZ <[EMAIL PROTECTED]> wrote:
>
> > Hi all!
> > I "simply" need to build an image rotation/cycle; it has to be
> > vertical, automatic, "looping", and the images have to be in  tags.
>
> > Jcarousel could be quite enough for me (even if I don't need arrows),
> > but I don't understand how to make the 
> > loop.http://sorgalla.com/projects/jcarousel/
>
> > ScrollShow could be good too, but ther's no 
> > documentation(!)http://flesler.blogspot.com/search/label/jQuery.ScrollShow
>
> > Can anybody help me??


[jQuery] Re: how to build a image cycle?

2008-01-24 Thread Brad Hile

To loop Jcarousel you need to set the wrap option and cycle the auto
option
The following will show 5 images(visible:5), advancing 1 image (scroll:
1) every 2 seconds (auto:2) and when it reaches the last image wrap
back to the first (wrap:last).

// set up the carousel
jQuery('#mycarousel').jcarousel({
  visible: 5,
  auto: 2,
  scroll:1,
  animation: 'slow',
  wrap: 'last'
  });

check out the following for explanations and more options
http://sorgalla.com/projects/jcarousel/#Getting-Started
You can control the size of the image displayed in the CSS file and I
would imagine you could turn off the arrows

Hope that helps.

Brad
PS Cycle plugin is really cool but not sure what sort of performance
hit (if any) running multiple instances would cause


On Jan 24, 3:11 am, DoZ <[EMAIL PROTECTED]> wrote:
> Hi all!
> I "simply" need to build an image rotation/cycle; it has to be
> vertical, automatic, "looping", and the images have to be in  tags.
>
> Jcarousel could be quite enough for me (even if I don't need arrows),
> but I don't understand how to make the 
> loop.http://sorgalla.com/projects/jcarousel/
>
> ScrollShow could be good too, but ther's no 
> documentation(!)http://flesler.blogspot.com/search/label/jQuery.ScrollShow
>
> Can anybody help me??


[jQuery] Re: how to build a image cycle?

2008-01-23 Thread Andy Matthews

5 pics at a time or 5 total pics all through the slideshow?

You could just run multiple instances of the Cycle plugin. 

-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of DoZ
Sent: Wednesday, January 23, 2008 2:14 PM
To: jQuery (English)
Subject: [jQuery] Re: how to build a image cycle?


...yes, but I forgot to mention the I need to show at least 5 images!


On 23 Gen, 20:03, "Andy Matthews" <[EMAIL PROTECTED]> wrote:
> Have you looked at the Cycle plugin from Mike Alsup?
>
> http://www.malsup.com/jquery/cycle
>
> It does everything you need.
>
> -Original Message-
> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] 
> On
>
> Behalf Of DoZ
> Sent: Wednesday, January 23, 2008 12:12 PM
> To: jQuery (English)
> Subject: [jQuery] how to build a image cycle?
>
> Hi all!
> I "simply" need to build an image rotation/cycle; it has to be 
> vertical, automatic, "looping", and the images have to be in  tags.
>
> Jcarousel could be quite enough for me (even if I don't need arrows), 
> but I don't understand how to make the 
> loop.http://sorgalla.com/projects/jcarousel/
>
> ScrollShow could be good too, but ther's no 
> documentation(!)http://flesler.blogspot.com/search/label/jQuery.Scroll
> Show
>
> Can anybody help me??




[jQuery] Re: how to build a image cycle?

2008-01-23 Thread DoZ

...yes, but I forgot to mention the I need to show at least 5 images!


On 23 Gen, 20:03, "Andy Matthews" <[EMAIL PROTECTED]> wrote:
> Have you looked at the Cycle plugin from Mike Alsup?
>
> http://www.malsup.com/jquery/cycle
>
> It does everything you need.
>
> -Original Message-
> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
>
> Behalf Of DoZ
> Sent: Wednesday, January 23, 2008 12:12 PM
> To: jQuery (English)
> Subject: [jQuery] how to build a image cycle?
>
> Hi all!
> I "simply" need to build an image rotation/cycle; it has to be vertical,
> automatic, "looping", and the images have to be in  tags.
>
> Jcarousel could be quite enough for me (even if I don't need arrows), but I
> don't understand how to make the loop.http://sorgalla.com/projects/jcarousel/
>
> ScrollShow could be good too, but ther's no 
> documentation(!)http://flesler.blogspot.com/search/label/jQuery.ScrollShow
>
> Can anybody help me??


[jQuery] Re: how to build a image cycle?

2008-01-23 Thread DoZ

...yes, but I forgot to mention that I need to show at least 5 pics.


On 23 Gen, 20:03, "Andy Matthews" <[EMAIL PROTECTED]> wrote:
> Have you looked at the Cycle plugin from Mike Alsup?
>
> http://www.malsup.com/jquery/cycle
>
> It does everything you need.
>
> -Original Message-
> From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
>
> Behalf Of DoZ
> Sent: Wednesday, January 23, 2008 12:12 PM
> To: jQuery (English)
> Subject: [jQuery] how to build a image cycle?
>
> Hi all!
> I "simply" need to build an image rotation/cycle; it has to be vertical,
> automatic, "looping", and the images have to be in  tags.
>
> Jcarousel could be quite enough for me (even if I don't need arrows), but I
> don't understand how to make the loop.http://sorgalla.com/projects/jcarousel/
>
> ScrollShow could be good too, but ther's no 
> documentation(!)http://flesler.blogspot.com/search/label/jQuery.ScrollShow
>
> Can anybody help me??


[jQuery] Re: how to build a image cycle?

2008-01-23 Thread besh

Hi DoZ,

try the neat jQuery Cycle plugin: http://www.malsup.com/jquery/cycle/

--
Bohdan Ganicky

On Jan 23, 7:11 pm, DoZ <[EMAIL PROTECTED]> wrote:
> Hi all!
> I "simply" need to build an image rotation/cycle; it has to be
> vertical, automatic, "looping", and the images have to be in  tags.
>
> Jcarousel could be quite enough for me (even if I don't need arrows),
> but I don't understand how to make the 
> loop.http://sorgalla.com/projects/jcarousel/
>
> ScrollShow could be good too, but ther's no 
> documentation(!)http://flesler.blogspot.com/search/label/jQuery.ScrollShow
>
> Can anybody help me??


[jQuery] Re: how to build a image cycle?

2008-01-23 Thread Andy Matthews

Have you looked at the Cycle plugin from Mike Alsup?

http://www.malsup.com/jquery/cycle

It does everything you need.

-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of DoZ
Sent: Wednesday, January 23, 2008 12:12 PM
To: jQuery (English)
Subject: [jQuery] how to build a image cycle?


Hi all!
I "simply" need to build an image rotation/cycle; it has to be vertical,
automatic, "looping", and the images have to be in  tags.

Jcarousel could be quite enough for me (even if I don't need arrows), but I
don't understand how to make the loop.
http://sorgalla.com/projects/jcarousel/

ScrollShow could be good too, but ther's no documentation(!)
http://flesler.blogspot.com/search/label/jQuery.ScrollShow

Can anybody help me??