9
votes
9answers
3k views
jQuery SVG vs. Raphael
I'm working on an interactive interface using SVG and Javascript/jQuery, and I'm trying to decide between Raphael and jQuery SVG. I'd like to know (1) what the trade-offs are betwe …
0
votes
1answer
38 views
How do I rotate a div with Raphael.js?
I am brand new to Raphael and am really stuck, I would like to rotate a div and its contents, using a button, with Raphael.
Ideally, I would like to have a smooth animation that g …
0
votes
2answers
32 views
svg: center of path
Hi
I'm trying to draw a label on a polygon of an svg file. The problem I'm facing is to find out roughly the center of this polygon to place the label, as the path's coordinates a …
1
vote
1answer
48 views
Where does come the offset in Raphael javascript
I really like the Raphael Javascript library which is very useful for handling SVG with javascript.
However there is an offset value which is added to the generated svg code that …
1
vote
2answers
115 views
Raphael JS Tutorial
My first impression on Raphael JS is so tempting,
where should I go to learn it, other than its website?
0
votes
1answer
22 views
Handle User Input with Raphael
I'd like to write a simple game using the Raphael javascript library, but one question is sticking in my mind.
How does one handle keyboard input? I've looked through the referen …
0
votes
1answer
53 views
Support for Raphael Javascript library in Netbeans
According to this blog post, Netbeans's supposed to support Javascript type inference. And Javascript support should be built-in to the Netbeans editor.
However when I add an HTML …
0
votes
1answer
68 views
Mobile Safari SVG rendering issues with raphaeljs
I am working on an animated, interactive graph using raphael that I need to work well on the iPhone. I have 2 minor rendering issues that I'm struggling with.
The first is that wh …
0
votes
3answers
244 views
Animation: jQuery or Raphael?
I am building a page that will animate objects (image/shape/div) and float them around the screen. At times there may be a large number of objects floating and interacting.
A req …
0
votes
1answer
142 views
Using Raphael JS to create text nodes
I built some shapes using Raphael, and now I wanted to put some text into them. But, it seems, from the examples, that a text node can only be attached to the paper and not svg sh …
1
vote
1answer
84 views
Using Raphael JS to float shapes around the screen
I am working on having some shapes floating around the screen at random. Eventually they will interact with each other, as well as have onclick functions. I can get the circles t …
2
votes
2answers
229 views
Simplest way to clear a container using raphaeljs javascript graphical library
I have to clear and redraw a raphael javascript main container. I've tried with
var paper = Raphael(10, 50, 320, 200);
paper.remove(); // Doesn't work
paper.node.removeNode(); …
1
vote
1answer
208 views
Scaling a fill pattern in raphael.js
paper=Raphael('previewBody',480,480);
paper.path({"stroke-width":1},'M0,0 L480,240 L480,480 L240,480 z')
.attr('fill','url(bg.png)'))
.scale(.5,.5,0,0);
My problem is the fil …
1
vote
3answers
225 views
How to animate a Raphael object along a path?
The object could be simple, a rect or circle. But the path should be a bezier curve. Please provide javascript/Raphael code if not too much trouble.
It will be nice if there is tr …
0
votes
4answers
432 views
Events work in Firefox/Chrome but fail in IE
I've just built an SVG map of New Zealand for use with the excellent javascript library Raphael, but unfortunately have stumbled upon what I can only imagine is a bug or syntactic …
