JS Slider 无法更改图像动画时间

JS Slider cant change image animate time

我开发了图片幻灯片。我想更改滑块 动画时间 。但是无法更改图像动画时间,我该如何解决?请帮助我,我提交我的代码请检查,我想动画,一张图像 2 分钟

函数

(function($, document, window){

    $(document).ready(function(){

        // Cloning main navigation for mobile menu
        $(".mobile-navigation").append($(".main-navigation .menu").clone());

        // Mobile menu toggle 
        $(".menu-toggle").click(function(){
            $(".mobile-navigation").slideToggle();
        });

        $(".offer img, .news img").panr({
            sensitivity: 150,
            scale: false,
            scaleOnHover: true,
            scaleTo: 50.2,
            scaleDuration: 55.25,
            panY: true,
            panX: true,
            panDuration: 50.25,
            resetPanOnMouseLeave: false
        });

        $(".testimonial-slider, .hero-slider").flexslider({
            directionNav: false,
            controlNav: true
        });

        if( $(".map").length ) {
            $('.map').gmap3({
                map: {
                    options: {
                        maxZoom: 14,
                        scrollwheel: false
                    }  
                },
                marker:{
                    address: "40 Sibley St, Detroit",
                    // options: {
                    //  icon: new google.maps.MarkerImage(
                    //      "images/map-marker.png",
                    //      new google.maps.Size(43, 53, "px", "px")
                    //  )
                    // }
                }
            },
            "autofit" );

        }
    });

    $(window).load(function(){

    });

})(jQuery, document, window);

我假设您在使用 flexslider 时遇到问题,您是否看过文档 (slideshowSpeed)?

https://github.com/woothemes/FlexSlider/wiki/FlexSlider-Properties#slideshowspeed