标签: mootools
如何使用mootools来修改/变形css类选择器一次选择的多个元素的高度?
谢谢:)
答案 0 :(得分:1)
MooTools的基础知识:
$$('div').each(function(el, index){ el.morph({ height: 100 * index }); });
示例:http://jsfiddle.net/mbrNq/