在我买的WordPress主题中,有一个我需要帮助的滑块。目前它不会滚动,它只是有一个向左和向右箭头向前或向后前进两个幻灯片。我需要的主要是滑块自动滚动。
在主题支持论坛寻求帮助后,主题开发人员告诉我,我需要在主题的.js文件中编辑以下几行。以下是我被告知需要编辑的行。
jQuery(function() {
jQuery("#latest-wrapper .latest").jCarouselLite({
btnNext: ".latest-next",
btnPrev: ".latest-prev",
easing: "easeInOutExpo",
speed: 700,
visible: 5,
scroll: 2
});
});
我对此很陌生,但我发现我的学习曲线非常快。如果有人有任何建议,那将非常感激。
P.S。滑块是页面顶部的第二个,也是两个中较大的一个。
答案 0 :(得分: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.
*