UNPKG

dojox

Version:

Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.

40 lines (36 loc) 1.21 kB
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" > <head> <title>Testing rounded rectangle</title> <style type="text/css"> @import "../../../../dojo/resources/dojo.css"; @import "../../../../dijit/tests/css/dijitTests.css"; </style> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- SVGWEB { --> <meta name="svg.render.forceflash" content="true"/> <script src="svgweb/src/svg.js" data-path="svgweb/src"></script> <script src="../../../../dojo/dojo.js" data-dojo-config="isDebug: true, forceGfxRenderer: 'svg'" type="text/javascript"></script> <!-- } --> <script type="text/javascript"> dojo.require("dojox.gfx"); dojo.require("dojox.gfx.move"); dojo.require("dojo.colors"); makeShapes = function(){ var g = dojox.gfx; var surface = g.createSurface("test", 800, 600) /* SVGWEB { */ surface.whenLoaded(function() { var rect1 = surface.createRect({x: 100, y: 100, width: 300, height: 200, r: 50}).setFill("red").setStroke("black"); new g.Moveable(rect1); }); /* } */ }; dojo.addOnLoad(makeShapes); </script> </head> <body> <h1>dojox.gfx Rounded rectangle</h1> <div id="test"></div> <p>That's all Folks!</p> </body> </html>