0

Web サイトにスライダーがありますが、スライドが自動的に変更されません。どうすれば修正できますか?このスライドのコードは次のとおりです。

$('#front-slides').slides({
    preload: true,
    generateNextPrev: false,
    slideSpeed: 90,
    animationStart: function(current){
        $slideCaption = $(".slides_container div.slide:eq("+ (current-1) +") .caption").text();
        $("#headline h6").text($slideCaption);

        if($slideCaption != ''){
            $("#headline").stop().hide().slideDown(600);
        }else{
            $("#headline").hide();
        }
    }
});

それは私のウェブサイトのリンクです:

http://narenjco.ir/prentash/

4

1 に答える 1