anchors appear to be working just fine.
Mike
On Apr 27, 3:04 am, Nic Hubbard <nnhubb...@gmail.com> wrote:
> Really? No one knows why the cycle pause is not working? Someone
> must be using this!
>
> On Apr 24, 8:25 am, Nic Hubbard <nnhubb...@gmail.com> wrote:
>
>
>
> > Anyone?
>
> > On Apr 23, 9:44 pm, Nic Hubbard <nnhubb...@gmail.com> wrote:
>
> > > Shawn,
>
> > > Yes, I havepauseon hover set, and this is correctly working. It is
> > > when the overlay comes up, and it is suppose topausethe current
> > > image, which, my code seems to be correct to do so $
> > > ('#artistCycleParent').cycle('pause'); but it just keeps cycling and
> > > does not honor thepause.
>
> > > I have it in my click function, and everything in the click function
> > > does work, but not thepause. Once the user clicks off of the
> > > overlay, it should resume.
>
> > > On Apr 23, 9:22 pm, Shawn <sgro...@open2space.com> wrote:
>
> > > >Pauseis working for me, with a catch.
>
> > > > If my mouse is not over the image, it cycles. Placing my mouse over the
> > > > image pauses the cycling.
>
> > > > Clicking the link brings up an overlay (?) and a form - at this point
> > > > the mouse is not "over" the image, but over the overlay/form. So the
> > > > image cycles as it should.
>
> > > > I don't think you want thepauseoption here. I think you want to
> > > > progamatically start/stop the cycling. See the section "Manually
> > > > Pausing a slideshow" athttp://malsup.com/jquery/cycle/int2.html.
>
> > > > HTH.
>
> > > > Shawn
>
> > > > Nic Hubbard wrote:
> > > > > I am using thecycleplugin, but for some reason I can't get thepause
> > > > > feature to work. I am showing a hidden div, and when I do, I need to
> > > > >pausethe slideshow.
> > > > > Here is what I am using:
>
> > > > > $('#artistCycleParent').cycle({
> > > > > fx: 'fade',
> > > > > speed: 3000,
> > > > > timeout: 5000,
> > > > > pause: 1,
> > > > > next: '#artworkNext',
> > > > > prev: '#artworkPrev'
> > > > > });
>
> > > > > //Pausethecycle
> > > > > $('#pauseButton').click(function() {
> > > > > $('#artistCycleParent').cycle('pause');
> > > > > $(this).hide();
> > > > > $('#resumeButton').show();
> > > > > return false;
> > > > > });
>
> > > > > // Resume thecycle
> > > > > $('#resumeButton').click(function() {
> > > > > $('#artistCycleParent').cycle('resume');
> > > > > $(this).hide();
> > > > > $('#pauseButton').show();
> > > > > return false;
> > > > > });
>
> > > > > The code looks ok to me, but it just does not seem topause.
>
> > > > > Example:http://www.caldwellsnyder.com/artists/montoya-ortiz/view-artworks
> > > > > Click on "Contact about artwork"
>
> > > > > Thanks.
No comments:
Post a Comment