スライドショーを約4秒間一時停止し、スライドを表示せずに再開したいと思います。これは可能ですか?私は次のコードでこれを自分でやろうとしましたが、うまくいかないようです。
$(document).ready(function () {
$('#homeSlideshowWrapper').cycle({
fx: 'fade',
timeout: 4000,
after: onBefore
});
function onBefore() {
$('#homeSlideshowWrapper').cycle('pause')
$('#homeSlideshowWrapper').delay(5000).cycle('resume')
} });
ありがとう
ルーク・ストラットン