私は単純なjquery遅延画像ループと思われるものを持っています
構文を確認しましたが、なぜ機能しないのかわかりません。
すべての CSS とコードは正しいようです。
ここに関数があります
$(document).ready(function () {
$.doTimeout('loop', 500, function () {
//changes the background of img2 to 'i' in 'sequence'
$(".img2").css('background', 'url(' + sequence[i] + ')');
//increments 'i' for the next image
i++;
//toggles the class
$("img1").toggleClass("img2");
//changes the the background of img1 to 'i' in 'sequence' ready for when class is toggled again
$(".img1").css('background', 'url(' + sequence[i] + ')');
//toggles the class
$("img2").toggleClass("img1");
//increments 'i; for the next change
i++;
//restarts the loop if i is equal to the sequence length
if (i === sequence.length) {
i = 0;
}
});
後で各画像をフェードインさせるcss3トランジションを追加するつもりなので、toggleclassがそこにある必要があります
誰か助けてください!