58 lines
1.9 KiB
HTML
58 lines
1.9 KiB
HTML
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" >
|
|
<head>
|
|
<title>Testing surface resizing</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" djConfig="isDebug:true,forceGfxRenderer:'svg'" type="text/javascript"></script>
|
|
<!-- } -->
|
|
<script type="text/javascript">
|
|
dojo.require("dojox.gfx");
|
|
|
|
var surface;
|
|
|
|
makeShapes = function(){
|
|
surface = dojox.gfx.createSurface("test", 500, 500);
|
|
/* SVGWEB { */
|
|
surface.whenLoaded(function() {
|
|
surface.createRect({width: 300, height: 300}).setFill([255, 0, 0, 0.3]).setStroke("red");
|
|
surface.createRect({x: 200, y: 200, width: 300, height: 300}).setFill([0, 0, 255, 0.3]).setStroke("green");
|
|
});
|
|
/* } */
|
|
};
|
|
|
|
getDim = function(){
|
|
var t = surface.getDimensions();
|
|
alert("dimensions: " + t.width + " by " + t.height);
|
|
};
|
|
|
|
make500x500 = function(){ surface.setDimensions(500, 500); };
|
|
make400x400 = function(){ surface.setDimensions(400, 400); };
|
|
make300x300 = function(){ surface.setDimensions(300, 300); };
|
|
|
|
dojo.addOnLoad(makeShapes);
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>Testing surface resizing</h1>
|
|
<!--<p><button onclick="makeShapes();">Go</button></p>-->
|
|
<p>
|
|
<button onclick="getDim();">getDimensions</button>
|
|
|
|
<button onclick="make300x300();">Make 300x300</button>
|
|
|
|
<button onclick="make400x400();">Make 400x400</button>
|
|
|
|
<button onclick="make500x500();">Make 500x500</button>
|
|
</p>
|
|
<div id="test" style="width: 500px; height: 500px;"></div>
|
|
<p>That's all Folks!</p>
|
|
</body>
|
|
</html>
|