配列にプッシュする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);
}
残念ながら、それらをドラッグすることはできません。最も奇妙なことは、それが必要に応じstart
てmove
発砲することです。しかし、なぜ彼らは動かないのでしょう。
前もって感謝します!