raphael.js中的array-elements上的drag()

时间:2013-10-23 20:07:48

标签: jquery html raphael

我有很多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应该开火。但为什么他们不动。

提前致谢!

1 个答案:

答案 0 :(得分:1)

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