如何为选项卡的幻灯片放映插件显示更多 3 张幻灯片(=6)?默认设置只给我 3 张幻灯片,但我需要 6 张。
我的代码是:
$(function () {
$(".slidetabs").tabs(".images > div", {
// enable "cross-fading" effect
effect: 'fade',
fadeOutSpeed: "slow",
// start from the beginning after the last tab
rotate: true,
// use the slideshow plugin. It accepts its own configuration
}).slideshow({ clickable: false });
});
谢谢。