我想增加/減少和元素的字體,然後是該類的下一個元素等等,對於一組元素<div class="test"></div> <div class="test"></div> ....
。我的意思是如何在jQuery中使用隊列動畫?
step 1: enlarging the first element and returning to normal size
step 2: enlarging the second element and returning to normal size
....
我的基本代碼是
$(document).ready(function() {
$('.test').animate({
left:50,
fontSize: "2em"},
"slow")
.animate({
left:-50,
fontSize: "1em"},
"slow");
這將影響到所有的元素一次。我怎樣才能讓隊列逐一進行更改。一次放大一個元素。
爲什麼你有兩個相同的'animate()'方法鏈接在一起?我不認爲'fontSize'是一個有效的CSS屬性。也許你想'font-size'。 – Sparky 2012-04-23 16:55:08
@ Sparky672對不起,這是一個錯字。第二個「動畫」旨在扭轉效應。 – Googlebot 2012-04-23 16:56:47