使用mootools基于css类选择器补间或变形许多元素?

时间:2010-05-08 16:16:35

标签: mootools

如何使用mootools来修改/变形css类选择器一次选择的多个元素的高度?

谢谢:)

1 个答案:

答案 0 :(得分:1)

MooTools的基础知识:

$$('div').each(function(el, index){
    el.morph({
        height: 100 * index
    });
});​

示例:http://jsfiddle.net/mbrNq/