e44a7e37b6
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" >
|
|
<head>
|
|
<title>Testing pattern</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>
|
|
<!--
|
|
The next line should include Microsoft's Silverligth.js, if you plan to use the silverlight backend
|
|
<script type="text/javascript" src="Silverlight.js"></script>
|
|
-->
|
|
<script type="text/javascript" src="../../../dojo/dojo.js" djConfig="isDebug: true"></script>
|
|
<!--<script type="text/javascript" src="../matrix.js"></script>-->
|
|
<!--<script type="text/javascript" src="../vml.js"></script>-->
|
|
<!--<script type="text/javascript" src="../svg.js"></script>-->
|
|
<!--<script type="text/javascript" src="../silverlight.js"></script>-->
|
|
<!--<script type="text/javascript" src="../canvas.js"></script>-->
|
|
<script type="text/javascript">
|
|
dojo.require("dojox.gfx");
|
|
|
|
makeShapes = function(){
|
|
var pattern = {
|
|
type: "pattern",
|
|
x: 0, y: 0, width: 333, height: 80,
|
|
src: "http://dojotoolkit.org/files/downloadButton.gif"
|
|
};
|
|
var ellipse = {cx: 400, cy: 200, rx: 350, ry: 150};
|
|
var surface = dojox.gfx.createSurface("test", 800, 600);
|
|
surface.createEllipse(ellipse)
|
|
.setStroke({color: "blue", width: 1 })
|
|
.setFill(pattern);
|
|
};
|
|
|
|
dojo.addOnLoad(makeShapes);
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>dojox.gfx Pattern test</h1>
|
|
<div id="test"></div>
|
|
<p>That's all Folks!</p>
|
|
</body>
|
|
</html>
|