Creating SVG graphics using javascript? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T14:16:34Z http://stackoverflow.com/feeds/question/1034712 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1034712/creating-svg-graphics-using-javascript 5 Creating SVG graphics using javascript? obaid83 2009-06-23T19:37:05Z 2009-06-26T17:54:58Z <p>How can I create SVG graphics using Javascript? Do all browsers support SVG?</p> http://stackoverflow.com/questions/1034712/creating-svg-graphics-using-javascript/1034724#1034724 2 Answer by Kevin for Creating SVG graphics using javascript? Kevin 2009-06-23T19:39:34Z 2009-06-23T19:39:34Z <p>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. </p> <p>This link has information about javascript and svg:</p> <p><a href="http://srufaculty.sru.edu/david.dailey/svg/SVGAnimations.htm" rel="nofollow">http://srufaculty.sru.edu/david.dailey/svg/SVGAnimations.htm</a></p> http://stackoverflow.com/questions/1034712/creating-svg-graphics-using-javascript/1034725#1034725 0 Answer by for Creating SVG graphics using javascript? 2009-06-23T19:39:38Z 2009-06-23T19:39:38Z <p>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.</p> http://stackoverflow.com/questions/1034712/creating-svg-graphics-using-javascript/1034729#1034729 7 Answer by schnaader for Creating SVG graphics using javascript? schnaader 2009-06-23T19:40:46Z 2009-06-23T19:40:46Z <p>Have a look at <a href="http://en.wikipedia.org/wiki/Comparison%5Fof%5Fweb%5Fbrowsers#Image%5Fformat%5Fsupport" rel="nofollow">this list on Wikipedia</a> 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.</p> <p>A tutorial about how to create SVG objects using Javascript can be found <a href="http://softwareas.com/ajaxjavascript-8-ways-to-create-graphics-on-the-fly" rel="nofollow">here</a>:</p> <pre><code>var svgDocument = evt.target.ownerDocument; var shape = svgDocument.createElementNS(svgns, "circle"); shape.setAttributeNS(null, "cx", 25); shape.setAttributeNS(null, "cy", 25); shape.setAttributeNS(null, "r", 20); shape.setAttributeNS(null, "fill", "green"); </code></pre> http://stackoverflow.com/questions/1034712/creating-svg-graphics-using-javascript/1034754#1034754 0 Answer by Trevor Robinson for Creating SVG graphics using javascript? Trevor Robinson 2009-06-23T19:44:22Z 2009-06-23T19:44:22Z <p>There's a jQuery plugin that allows you to manipulate SVG via Javascript:</p> <p><a href="http://plugins.jquery.com/project/svg" rel="nofollow">http://plugins.jquery.com/project/svg</a></p> <p>From its intro:</p> <blockquote> <p>Supported natively in Firefox, Opera, and Safari and via the Adobe SVG viewer or Renesis player in IE, SVG lets you display graphics within your Web pages. Now you can easily drive the SVG canvas from your JavaScript code.</p> </blockquote> http://stackoverflow.com/questions/1034712/creating-svg-graphics-using-javascript/1040307#1040307 2 Answer by Boldewyn for Creating SVG graphics using javascript? Boldewyn 2009-06-24T19:06:42Z 2009-06-24T19:06:42Z <p>To do it cross-browser, I strongly recommend RaphaelJS: <a href="http://raphaeljs.com" rel="nofollow">rapaheljs.com</a> That has a hell of a good API and does VML in IE, that can't understand SVG.</p> <p>Cheers,</p> http://stackoverflow.com/questions/1034712/creating-svg-graphics-using-javascript/1050392#1050392 2 Answer by fuzzyTew for Creating SVG graphics using javascript? fuzzyTew 2009-06-26T17:54:58Z 2009-06-26T17:54:58Z <p>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.</p> <p>SVG elements can be created with javascript as follows:</p> <pre><code>// "circle" may be any tag name var shape = document.createElementNS("http://www.w3.org/2000/svg", "circle"); // Set any attributes as desired shape.setAttribute("cx", 25); shape.setAttribute("cy", 25); shape.setAttribute("r", 20); shape.setAttribute("fill", "green"); // Add to a parent node; document.documentElement should be the root svg element. // Acquiring a parent element with document.getElementById() would be safest. document.documentElement.appendChild(shape); </code></pre> <p>The <a href="http://www.w3.org/TR/SVG11/" rel="nofollow">SVG specification</a> describes the DOM interfaces for all SVG elements. For example, the SVGCircleElement, which is created above, has <code>cx</code>, <code>cy</code>, and <code>r</code> attributes for the center point and radius, which can be directly access. These are SVGAnimatedLength attributes, which have a <code>baseVal</code> property for the normal value, and an <code>animVal</code> property for the animated value. Browsers at the moment are not reliably supporting the <code>animVal</code> property. <code>baseVal</code> is an SVGLength, whose value is set by the <code>value</code> property.</p> <p>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:</p> <pre><code>var shape = document.createElementNS("http://www.w3.org/2000/svg", "circle"); shape.cx.baseVal.value = 25; shape.cy.baseVal.value = 25; shape.r.baseVal.value = 20; shape.setAttribute("fill", "green"); document.documentElement.appendChild(shape); </code></pre>