我想增加/减少和元素的字体,然后是该类的下一个元素,依此类推,对于一组元素为<div class="test"></div> <div class="test"></div> ....
. 我是说
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");
这将同时影响所有元素。我怎样才能排队来一一进行更改。一次有一个放大的元素。