How can I create SVG graphics using Javascript? Do all browsers support SVG?
|
1
|
|||
|
|
|
Have a look at this list on Wikipedia about which browsers support SVG. It also provides links to more details in the footnotes. Firefox for example supports basic SVG, but at the moment lacks most animation features. A tutorial about how to create SVG objects using Javascript can be found here:
|
||
|
|
|
No not all browsers support SVG. I believe IE needs a plugin to use them. Since svg is just an xml document, JavaScript can create them. I am not certain about loading it into the browser though. I haven't tried that. This link has information about javascript and svg: http://srufaculty.sru.edu/david.dailey/svg/SVGAnimations.htm |
||
|
|
|
|
To do it cross-browser, I strongly recommend RaphaelJS: rapaheljs.com That has a hell of a good API and does VML in IE, that can't understand SVG. Cheers, |
||
|
|
|
|
IE needs a plugin to display SVG. Most common is the one available for download by Adobe; however, Adobe no longer supports or develops it. Firefox, Opera, Chrome, Safari, will all display basic SVG fine but will run into quirks if advanced features are used, as support is incomplete. Firefox has no support for declarative animation. SVG elements can be created with javascript as follows:
The SVG specification describes the DOM interfaces for all SVG elements. For example, the SVGCircleElement, which is created above, has Hence, for script animations, one can also set these DOM properties to control SVG, and the following code should be equivalent to the above code:
|
||
|
|
|
|
I am not sure if you can create svg graphics on IE. Maybe I am wrong. I am interested in knowing more about this as well. |
||
|
|
|
|
There's a jQuery plugin that allows you to manipulate SVG via Javascript: http://plugins.jquery.com/project/svg From its intro:
|
||
|
|
