Results 1 to 5 of 5

Thread: Step Carousel - Auto problem

  1. #1
    Join Date
    Mar 2009
    Posts
    10
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Exclamation Step Carousel - Auto problem

    1) Script Title: Step Carousel

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

    3) Describe problem: Auto play function is set to
    Code:
    autostep: {enable:true, moveby:1, pause:3000},
    But still will not auto play for some reason, cant figure it out.

    Anyone have any ideas?

    Is live at JamieKnop.com

    Thanks.

  2. #2
    Join Date
    Jan 2008
    Posts
    4,168
    Thanks
    28
    Thanked 628 Times in 624 Posts
    Blog Entries
    1

    Default

    Try fixing this.



    And also validating.
    http://validator.w3.org/check?uri=ht...Inline&group=0
    Jeremy | jfein.net

  3. #3
    Join Date
    Mar 2009
    Posts
    10
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Thanks made changes but still no luck :/

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Change:

    Code:
       <script type="text/javascript">
    
    	stepcarousel.setup({
    		galleryid: 'mygallery', //id of carousel DIV
    		beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs
    		panelclass: 'panel', //class of panel DIVs each holding content
    		autostep: {enable:true, moveby:1, pause:3000},
    		panelbehavior: {speed:500, wraparound:false, persist:true},
    		//defaultbuttons: {enable: true, moveby: 1, leftnav: ['images/blank.gif', -60, 0], rightnav: ['images/blank.gif', 4, 0]},
    		statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels
    		contenttype: ['inline'] //content setting ['inline'] or ['external', 'path_to_external_file']
    	})
       </script>
    to:

    Code:
       <script type="text/javascript">
    
    	stepcarousel.setup({
    		galleryid: 'mygallery', //id of carousel DIV
    		beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs
    		panelclass: 'panel', //class of panel DIVs each holding content
    		autostep: {enable:true, moveby:1, pause:3000},
    		panelbehavior: {speed:500, wraparound:false, persist:true},
    		defaultbuttons: {enable: false, moveby: 1, leftnav: ['images/blank.gif', -60, 0], rightnav: ['images/blank.gif', 4, 0]},
    		statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels
    		contenttype: ['inline'] //content setting ['inline'] or ['external', 'path_to_external_file']
    	})
       </script>
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  5. #5
    Join Date
    Mar 2009
    Posts
    10
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Thanks jscheuer!

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
  •