querysuperslide slide设置轮播时间
To set the slideshow time for Superslide, you can use the speed option in the configuration. The speed option determines the duration between each slide transition. Here is an example:
$(document).ready(function() {
$('#slideshow').superslides({
speed: 5000 // set the duration to 5 seconds (5000 milliseconds)
});
});
In the example above, #slideshow is the ID of the HTML element that contains the slideshow. Adjust the speed value to set the desired duration between each slide transition.
原文地址: https://www.cveoy.top/t/topic/jb7e 著作权归作者所有。请勿转载和采集!