web前端royalSlider插件,怎样自动播放?

 <script>
jQuery(document).ready(function($) {
$('#full-width-slider').royalSlider({
arrowsNav: true,
loop: false,
keyboardNavEnabled: true,
controlsInside: false,
imageScaleMode: 'fill',
arrowsNavAutoHide: false,
autoScaleSlider: true, 
autoScaleSliderWidth: 960,     
autoScaleSliderHeight: 350,
controlNavigation: 'bullets',
thumbsFitInViewport: false,
navigateByClick: true,
startSlideId: 0,
autoPlay: false,
transitionType:'move',
globalCaption: true,
deeplinking: {
enabled: true,
change: false
},
imgWidth: 1400,
imgHeight: 680
});
});
</script>

请大神指导,给出具体的解决方案

看api。你autoPlay都设置为false了还怎么自动播放

        // general options go gere
        autoScaleSlider: true,
        autoPlay: {
            // autoplay options go gere
            enabled: true,
            pauseOnHover: true,
                delay:6000//播放间隔,单位ms
        }

http://dimsemenov.com/plugins/royal-slider/documentation/#autoplay