Skip to main content

How can I combine objects in the Raphael javascript library?



Sorry for a long question but here goes. I am trying to modify the drag shapes around demo here:





http://raphaeljs.com/graffle.html





The demo works fine. What I want to do is put words inside the shapes and move the shape and text around as a composite single object.





Here is the code for creating the objects:







window.onload = function () {

var dragger = function () {

this.ox = this.type == "rect" ? this.attr("x") : this.attr("cx");

this.oy = this.type == "rect" ? this.attr("y") : this.attr("cy");

this.animate({"fill-opacity": .2}, 500);

},

move = function (dx, dy) {

var att = this.type == "rect" ? {x: this.ox + dx, y: this.oy + dy} : {cx: this.ox + dx, cy: this.oy + dy};

this.attr(att);

for (var i = connections.length; i--;) {

r.connection(connections[i]);

}

r.safari();

},

up = function () {

this.animate({"fill-opacity": 0}, 500);

},

r = Raphael("holder", 640, 480),

connections = [],

shapes = [ r.ellipse(190, 100, 30, 20),

r.rect(290, 80, 60, 40, 10),

r.rect(290, 180, 60, 40, 2),

r.ellipse(450, 100, 20, 20)

];

for (var i = 0, ii = shapes.length; i < ii; i++) {

var color = Raphael.getColor();

shapes[i].attr({fill: color, stroke: color, "fill-opacity": 0, "stroke-width": 2, cursor: "move"});

shapes[i].drag(move, dragger, up);

}

connections.push(r.connection(shapes[0], shapes[1], "#fff"));

connections.push(r.connection(shapes[1], shapes[2], "#fff", "#fff|5"));

connections.push(r.connection(shapes[1], shapes[3], "#000", "#fff"));

};







I tried something like this:





myWords = [ r.text(190, 100, "Hello"), r.text(480,100, "Good Bye") ];





and made adjustments elsewhere so that it would work, but then it just moves text and shapes but the shape and text are never seen as a whole. I can move the text separate from the shape and vice versa. I need them to be one object. so they move together. How can I do that? Thank you for any help.





EDIT:





I tried this:







st.push(r.text (190, 100, "node1"), r.ellipse(190, 100, 30, 20)),

st.push(r.text (290, 80, "Center"), r.rect(290, 80, 60, 40, 10)),

st.push(r.text (290, 180, "node2"), r.rect(290, 180, 60, 40, 2)),

st.push(r.text (450, 100, "node3"), r.ellipse(450, 100, 20, 20))







But the text and shape did not stay together when I moved the shape. The text just stayed still.



Source: Tips4all

Comments

Popular posts from this blog

[韓日関係] 首相含む大幅な内閣改造の可能性…早ければ来月10日ごろ=韓国

div not scrolling properly with slimScroll plugin

I am using the slimScroll plugin for jQuery by Piotr Rochala Which is a great plugin for nice scrollbars on most browsers but I am stuck because I am using it for a chat box and whenever the user appends new text to the boxit does scroll using the .scrollTop() method however the plugin's scrollbar doesnt scroll with it and when the user wants to look though the chat history it will start scrolling from near the top. I have made a quick demo of my situation http://jsfiddle.net/DY9CT/2/ Does anyone know how to solve this problem?

Why does this javascript based printing cause Safari to refresh the page?

The page I am working on has a javascript function executed to print parts of the page. For some reason, printing in Safari, causes the window to somehow update. I say somehow, because it does not really refresh as in reload the page, but rather it starts the "rendering" of the page from start, i.e. scroll to top, flash animations start from 0, and so forth. The effect is reproduced by this fiddle: http://jsfiddle.net/fYmnB/ Clicking the print button and finishing or cancelling a print in Safari causes the screen to "go white" for a sec, which in my real website manifests itself as something "like" a reload. While running print button with, let's say, Firefox, just opens and closes the print dialogue without affecting the fiddle page in any way. Is there something with my way of calling the browsers print method that causes this, or how can it be explained - and preferably, avoided? P.S.: On my real site the same occurs with Chrome. In the ex