You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.5 KiB
43 lines
1.5 KiB
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" > |
|
<head> |
|
<title>Dojo Unified 2D Graphics</title> |
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|
<style type="text/css"> |
|
@import "../../../../dojo/resources/dojo.css"; |
|
@import "../../../../dijit/tests/css/dijitTests.css"; |
|
</style> |
|
<!-- 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"); |
|
|
|
makeShapes = function(){ |
|
var surface = dojox.gfx.createSurface(document.getElementById("test"), 500, 500); |
|
/* SVGWEB { */ |
|
surface.whenLoaded(function() { |
|
var styles = ["none", "Solid", "ShortDash", "ShortDot", "ShortDashDot", "ShortDashDotDot", |
|
"Dot", "Dash", "LongDash", "DashDot", "LongDashDot", "LongDashDotDot"]; |
|
var font = "normal normal normal 10pt Arial"; // CSS font style |
|
var y_offset = dojox.gfx.normalizedLength("4pt"); |
|
for(var i = 0; i < styles.length; ++i){ |
|
var y = 20 + i * 20; |
|
surface.createText({x: 140, y: y + y_offset, text: styles[i], align: "end"}).setFont(font).setFill("black"); |
|
surface.createLine({x1: 150, y1: y, x2: 490, y2: y}).setStroke({style: styles[i], width: 3, cap: "round"}); |
|
} |
|
}); |
|
/* } */ |
|
}; |
|
|
|
dojo.addOnLoad(makeShapes); |
|
|
|
</script> |
|
</head> |
|
<body> |
|
<h1>dojox.gfx: Line style test</h1> |
|
<div id="test"></div> |
|
<p>That's all Folks!</p> |
|
</body> |
|
</html>
|
|
|