0

購入した WordPress テーマには、サポートが必要なスライダーがあります。現在はスクロールせず、前後に 2 つのスライドを進めるための左右の矢印しかありません。私が必要とする主なことは、スライダーが自動的にスクロールすることです。

テーマのサポート フォーラムで支援を求めた後、テーマの開発者は、テーマの .js ファイルで次の行を編集する必要があると私に言いました。編集する必要があると言われた行は次のとおりです。

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

私はこれにかなり慣れていませんが、これに対する私の学習曲線は信じられないほど速いことがわかりました. 誰かに何か提案があれば、それは本当にありがたいです。

PSスライダーは、ページの上部にある 2 番目の、2 つのうち大きい方です。

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 に答える