私は5つのテキストノードを持っています
<h2 class="textillate"> test </h2>
<h2 class="textillate"> test </h2>
<h2 class="textillate"> test </h2>
<h2 class="textillate"> test </h2>
<h2 class="textillate"> test </h2>
前のノードが終了したら、これらのノードを 1 つずつテキスタイル化したいと考えています。
私はこれを試しましたが、うまくいきませんでした:(
$(document).ready(function() {
nodes = $('.textillate');
nodes.eq(0).textillate()
.eq(1).textillate();
});