Jquery ツールのタブ スライダーの速度を制御しようとしていますが、うまく動作しません。ここで何が間違っているのかわかりません...
次のコードを試しましたが、うまくいきませんでした...
$(function() {
$(".slidetabs").tabs(".images > div", {
// enable "cross-fading" effect
effect: 'fade',
fadeOutSpeed: "slow",
// start from the beginning after the last tab
rotate: true,
// Autoplay doesn't work
autoPlay: true,
interval: 3000
// use the slideshow plugin. It accepts its own configuration
}).slideshow();
});
http://jsfiddle.net/shavindra/j7UcM/9/
だから私はこれを試しました...動作しますが、間隔を制御できません
$(".slidetabs").data("slideshow").play({
// interval configuration doesn't work
interval: 3000
});
ドキュメントはこちら: http://jquerytools.org/documentation/tabs/slideshow.html
JSfiddle リンクはこちらhttp://jsfiddle.net/shavindra/j7UcM/10/
ありがとう