0
所以基本上我有多個div類叫quote,包含一個文本和一個blockquote。我該如何讓它褪色到下一個報價類每5秒?製作一個jQuery文本滑塊
這裏的標記是什麼樣子:
<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>