jQuery动画多个元素的性能

时间:2012-07-03 10:24:38

标签: jquery performance jquery-animate animated

我有一个网站,我必须同时为“少数”元素制作动画。 当所有元素完成动画时(我用$(:animated) == 1测试) 我有一个ajax请求。 everthing适用于大约120个元素但是当涉及到更多元素时,脚本会变得忙碌并且浏览器要求我停止脚本: - /这是我的代码:

$('.wrapper-1, .wrapper-2').animate({
            scrollLeft: 50
        },{
            queue: false, //I thought this would help, has no influence
            complete: function() {
                if($(':animated').length==1){

                        //do fancy stuff and get ajax contents              

                } //END if animated
            }//END scroll animation complete
        });//END animate

有没有人知道如何处理更多的元素?

感谢

0 个答案:

没有答案