0

我有很多Raphael元素,我将它们推入一个数组:

var start = function () {
                this.ox = this.attr("cx");
                this.oy = this.attr("cy");
            },
            move = function (dx, dy) {
                this.attr({cx: this.ox + dx, cy: this.oy + dy});
            }    

for(var i = 0; i < 149; i++) {
    cubes = paper.rect(Math.floor(Math.random()*2000), Math.floor(Math.random()*2000), 0, 0);
    cubes.animate({ width: 25, height: 25 }, 500, "bounce");
    cubesmixed.push(cubes);
    cubesmixed[i].drag(move, start);
}

但不幸的是我不能拖动它们。最奇怪的是,那startmove他们应该的火。但是他们为什么不动。

提前致谢!

4

1 回答 1

1

首先属性 cx, cy 用于圆形和省略号,因此更新它们不会移动使用 x 和 y 属性的矩形。如果您想要实现的是同时移动它们(这是我开始阅读您的问题时的第一印象 - 但我不再确定这一点:)),那么请参考这个问题。

于 2013-10-24T06:20:02.703 回答