我有一個頁面,內容有不同時間延遲的Wow動畫。這是我的例子。如何循環WOW動畫時間
<div class="col-sm-6 col-md-3">
<div class="service-item hvr-grow wow fadeIn" data-wow-duration="500" data-wow-delay="500ms">
<h4>Air Cargo Services</h4>
<p class="contnt">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="service-item hvr-grow wow fadeIn" data-wow-duration="500" data-wow-delay="700ms">
<h4>Air Cargo Services</h4>
<p class="contnt">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
<div class="col-sm-6 col-md-3">
<div class="service-item hvr-grow wow fadeIn" data-wow-duration="500" data-wow-delay="900ms">
<h4>Air Cargo Services</h4>
<p class="contnt">Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</div>
</div>
它在這裏工作。但我實際上做的是,數據將從數據庫添加到這個div中。在我的PHP代碼中,我只添加了一個div來附加數據,並且這個div將循環。
{% for service in services %}
<div class="col-sm-6 col-md-3">
<div class="service-item hvr-grow wow fadeIn" data-wow-duration="500" data-wow-delay="500ms">
<h4>{{ service['name'] }}</h4>
<p>{{ str_limit(service['description'], 100) }}</p>
</div>
</div> {% endfor %}
問題是,當div被循環時,每個div的WoW延遲時間爲500。所以每個div都在一次顯示。我需要上面的確切的HTML代碼。當div被循環時如何做。幫我。
謝謝。
請分享您的哇滑塊的JS代碼。 – CodeMonkey
最後一點的問題對我來說並不清楚。你想幹什麼?對於所有的div元素或它們之間的時間變化,你是否需要'data-wow-duration =「500」data-wow-delay =「500ms」的共同屬性?所以第一張幻燈片將顯示500毫秒,第二張將只顯示1000毫秒等等? – CodeMonkey
@CodeMonkey我需要在每個div之間的時間varient。第一張幻燈片將顯示500毫秒,第二張將顯示只有1000毫秒和第三張1300或1500. –