因此,当集合中的某些元素对它们发起了拖动事件时,我尝试使用翻译并调用集合上的拖动事件。但它有点慢。有谁知道如何优化以使其更快?
这是我使用的功能
function dragsymbolsoncanvas(foo){//foo is the set passed.
function dragger(){
this.dx = this.dy = 0;
};
function mover(s){
return function(dx, dy){
(s||this).translate(dx-this.dx,dy-this.dy);
this.dx = dx;
this.dy = dy;
}
};
foo.forEach(function(herp){//set.forEach function from raphaeljs
if(herp.data("candrag")=="true"){
foo.drag(mover(foo), dragger);
}
});
};
有没有一种方法可以加快速度,而无需在我想要使其可拖动的部分上绘制不可见的元素并将处理程序附加到这些部分?