Results 1 to 4 of 4

Thread: Content Slider Resume on Mouseclick

  1. #1
    Join Date
    Jun 2006
    Posts
    8
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Content Slider Resume on Mouseclick

    1) Script Title: Featured Content Slider v2.4

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...tentslider.htm

    3) Describe problem: After clicking on a number in the pagination area, how can I get it to resume. I know it will pause on mouseover & resume on mouseout.

    Any help would be appreciated.

    Thanks
    Mack

  2. #2
    Join Date
    Jun 2006
    Posts
    8
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Never mind...
    Found the answer here:
    http://www.dynamicdrive.com/forums/s...ad.php?t=48817

    But when you click to go to the intended image it jumps to the next one quickly, how can that be delayed.
    Thanks
    Mack

  3. #3
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Quote Originally Posted by mackula View Post
    Never mind...
    Found the answer here:
    http://www.dynamicdrive.com/forums/s...ad.php?t=48817

    But when you click to go to the intended image it jumps to the next one quickly, how can that be delayed.
    Thanks
    Mack
    That's because the pause timer continues to run unabated when you click on a thumbnail link. So if there's 1 sec left before the script switches from slide 1 to slide 2 when you clicked on a link to directly go to slide 2, that 1 sec is then applied to the time before slide 2 automatically changes to slide 3.

    With that said, to reset the pause timer each time the pagination link is clicked on, instead of the original change below:

    Code:
    		pdiv[setting.revealtype]=function(){
    			//featuredcontentslider.cleartimer(setting, window["fcsautorun"+setting.id])
    		}
    Change the above to:

    Code:
    		pdiv[setting.revealtype]=function(){
    			featuredcontentslider.cleartimer(setting, window["fcsautorun"+setting.id])
    			featuredcontentslider.autorotate(setting)
    		}
    DD Admin

  4. The Following User Says Thank You to ddadmin For This Useful Post:

    mackula (12-19-2011)

  5. #4
    Join Date
    Jun 2006
    Posts
    8
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Thank you so much...
    Worked like a charm!!!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •