选择多个svg元素并在Raphael.js中拖动它们

时间:2011-04-30 22:07:00

标签: svg selection raphael drag

有谁知道我怎么做到这一点?

我基本上有一个包含多个形状,线条,文本等的svg文档......我正在尝试实现一个选择工具,它可以帮助我选择多个元素,对它们进行分组并拖动它们。

2 个答案:

答案 0 :(得分:27)

raphäel中有一个名为set:http://raphaeljs.com/reference.html#set

的功能

您可以将要拖动的所有元素添加到新集合中,然后将拖动机制应用于集合。

我告诉你:http://jsfiddle.net/Wrajf/

这不完美。我会将mousemove事件添加到文档中,但为此你需要一个像jQuery这样的库。否则,如果您将鼠标移动到快速,则会出现故障。

答案 1 :(得分:4)

我做了这个(example here):

编辑:更清洁的东西

  1. 创建设置和检索元素组的方法:

    Raphael.el.setGroup = function (group) {
      this.group = group;
    };
    Raphael.el.getGroup = function () {
      return this.group;
    };
    
  2. 创建分组元素的方法:

    Raphael.fn.superRect = function (x, y, w, h, text) {
      var background = this.rect(x, y, w, h).attr({
        fill: "#FFF",
        stroke: "#000",
        "stroke-width": 1
      });
      var label = this.text(x+w/2,y+h/2, text);
      var layer = this.rect(x, y, w, h).attr({
        fill: "#FFF",
        "fill-opacity": 0,
        "stroke-opacity": 0,
        cursor: "move"
      });
      var group = this.set();
      group.push(background, label, layer);
      layer.setGroup(group);
      return layer;
    };
    
  3. 创建拖动分组元素的函数:

    var dragger = function () {
      this.group = this.getGroup();
      this.previousDx = 0;
      this.previousDy = 0;
    },
    move = function (dx, dy) {
      var txGroup = dx-this.previousDx;
      var tyGroup = dy-this.previousDy;
    
      this.group.translate(txGroup,tyGroup);
    
      this.previousDx = dx;
      this.previousDy = dy;
    },
    up = function () {};
    
  4. 初始化SVG论文并创建你的元素(元素的顺序很重要)::

    window.onload = function() {
    
      var paper = Raphael(0, 0,"100%", "100%");
    
      var x=50, y=50, w=30, h=20;
    
      paper.superRect(x, y, w, h, "abc").drag(move, dragger, up);
    
      x +=100;
    
      paper.superRect(x, y, w, h, "def").drag(move, dragger, up);
    
    };