したがって、基本的には、テキストとブロック引用を含む引用と呼ばれる複数の div クラスがあります。5秒ごとに次の引用クラスにフェードするようにするにはどうすればよいですか?
マークアップは次のようになります。
<div id="quoteWrapper">
<div class="quote">
<blockquote>Quote goes here</blockquote>
<p class="quoteBy">Author</p>
</div>
<div class="quote">
<blockquote>Second Quote goes here</blockquote>
<p class="quoteBy">Author</p>
</div>
<div class="quote">
<blockquote>Third Quote goes here</blockquote>
<p class="quoteBy">Author</p>
</div>
</div>