我正在尝试创建动画地图。
我的地图上的点都在回调中运行,所以......
// Animate the drops
$marker.animate({
top : '100px'
}, 500, 'easeOutBounce', function(){
$america.animate({
top : '150px'
}, 500, 'easeOutBounce', function(){
$england.animate({
top : '80px'
}, 500, 'easeOutBounce', function(){
$australia.animate({
top : '300px'
}, 500, 'easeOutBounce');
});
});
});
http://jsfiddle.net/Liamatvenn/T3CTH/1/
这是解决这个问题的坏方法吗?这会占用访问者计算机上的更多资源吗?