Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
各画像をフェードインおよびフェードアウトするjQueryスライドショーを実装しようとしていますが、次または前の画像にスクロールするためのコントロールがあります。私は今このチュートリアルを進めていますが、スライドショーの最後に各画像を追加して、スライドショーが最後に到達したときに最初の画像までスクロールして戻らないようにするにはどうすればよいか考えていました。ただ継続的にそれらを通り抜けます。
前もって感謝します!
ショーン
とった。
$('#previous').click(function() { $('#slideshow img:first').fadeOut(1000).prev().fadeIn(1000).end().appendTo('#slideshow'); }); $('#next').click(function() { $('#slideshow img:first').fadeOut(1000).next().fadeIn(1000).end().appendTo('#slideshow'); });