0

在我购买的 WordPress 主题中,有一个需要帮助的滑块。目前它不滚动,它只是有一个左右箭头来向前或向后进行两张幻灯片。我需要的主要是让滑块自动滚动。

在主题的支持论坛寻求帮助后,主题开发人员告诉我,我需要在主题的 .js 文件中编辑以下行。这是我被告知需要编辑的行。

jQuery(function() {
        jQuery("#latest-wrapper .latest").jCarouselLite({       
            btnNext: ".latest-next",        
            btnPrev: ".latest-prev",
            easing: "easeInOutExpo",
            speed: 700,
            visible: 5,
            scroll: 2       
        }); 
    });

我对此很陌生,但我发现我的学习曲线非常快。如果有人有任何建议,那将不胜感激。

PS滑块是页面顶部的第二个,也是两个中较大的一个。

4

1 回答 1

0
jQuery(function() {
        jQuery("#latest-wrapper .latest").jCarouselLite({       
            btnNext: ".latest-next",        
            btnPrev: ".latest-prev",
            easing: "easeInOutExpo",
            auto: 3000,
            speed: 700,
            visible: 5,
            scroll: 2       
        }); 
    });

 * @option auto : number - default is null, meaning autoscroll is disabled by default
 * @example
 * $(".carousel").jCarouselLite({
 *      auto: 800,
 *      speed: 500
 * });
 * @desc You can make your carousel auto-navigate itself by specfying a millisecond value in this option.
 * The value you specify is the amount of time between 2 slides. The default is null, and that disables auto scrolling.
 * Specify this value and magically your carousel will start auto scrolling.
 *
于 2013-03-04T22:18:03.340 回答