Forums

How to slow down the speed of a slideshow? (1 post)

  1. potempasisters
    Member
    Posted 2 years ago #

    Hi,
    I have a feature slider used on my blog (http://sarahpotempa.com) and I would like to slow down the speed. Here is the beginning of the code in feature.php

    <?php
    global $options;
    foreach ($options as $value) {
    if (get_settings( $value['id'] ) === FALSE) { $$value['id'] = $value['std']; } else { $$value['id'] = get_settings( $value['id'] ); }
    }
    ?>
    
    <script type="text/javascript">
    $(function() {
    $("#navi ul").tabs("#panes > div", {
    effect: 'fade',
    fadeOutSpeed: 500,
    
    rotate: true
    
    }).slideshow({
    autoplay: true,
    interval: 2500
    });
    });
    </script>

    Is it the interval? I just want to check before messing it up!
    Thanks!

Topic Closed

This topic has been closed to new replies.

About this Topic

  • RSS feed for this topic
  • Started 2 years ago by potempasisters
  • This topic is not resolved
  • WordPress version: 2.9.2