このコードは動作しません。どうすれば解決できますか?jqueryでhide/showを使用する
私はなぜ
$(function() {
texts = $('.text-block');
slide = $('#slideshow');
// hide everything
texts.each(function() {
$(this).hide();
});
// show it once by once
jQuery.each(texts, function() {
$(this).show(300);
$(this).delay(7000);
$(this).hide(300);
});
});
jsfiddleの例を、使用例などと正確に一致するように更新しました。 –