RaphaëlJS is a cross-browser JavaScript library that draws vector graphics for web sites. It uses SVG for most browsers and VML for older versions of Internet Explorer.

learn more… | top users | synonyms

1
vote
1answer
81 views

how to write this more concise

i'm using Raphael.js to generate objects which are unique but they do basically the same thing and fanybox to display unique image after click on generated object CODE //OBJECT 101 var p1_101 = ...
1
vote
0answers
28 views

is there a better way to write this code that generates Raphael Icons on a page?

I am trying to figure out a better way to attach the icons based on the class id? Here is the link: http://jsfiddle.net/fLZKc/2/ var bubble = ...
1
vote
1answer
759 views

Simplify Raphael JS code: display text in DIV on click event

I've been working with the RaphaelJS 'australia map' example that displays text in a DIV when a state is clicked on. However I'm having difficulty working with it to create different events and ...
3
votes
1answer
614 views

Animating opacity of 1400 Raphael.js objects hurts animating performance

First off, thank you for any help. :) JSFiddle code As you can see by the fiddle link above I am animating 1400 objects trying to create a 'twinkling effect'. As the user moves the mouse faster more ...
1
vote
0answers
112 views

How to combine those raphael.js objects

I'm working on the floors of a building, using svg objects generated by raphael.js. All objects are clickable and all have different shapes, but all of them have the same actions. The code below is ...
0
votes
0answers
883 views

Using Backbone.js with Raphael and handling nested views

I'm trying to create an application similar to a floor plan editor in Backbone.js and Raphael. I'm not sure if what I'm doing is structured correctly or not. I'm not using the Backbone routing, just ...
2
votes
2answers
577 views

Optimize coloring book built with Raphaël and jQuery

I've been building a coloring book for kids: http://coloringbook.core.ba.lightburncloud.com/ It's got to work on an iPad, so I decided to try out Raphaël JS. I want to try and make this as efficient ...