62 lines
2.2 KiB
HTML
62 lines
2.2 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>
|
|||
|
<!--
|
|||
|
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="../_base.js"></script>
|
|||
|
<script type="text/javascript" src="../shape.js"></script>
|
|||
|
<script type="text/javascript" src="../path.js"></script>
|
|||
|
<script type="text/javascript" src="../arc.js"></script>
|
|||
|
<!--<script type="text/javascript" src="../vml.js"></script>-->
|
|||
|
<!--<script type="text/javascript" src="../svg.js"></script>-->
|
|||
|
<!--<script type="text/javascript" src="../canvas.js"></script>-->
|
|||
|
<!--<script type="text/javascript" src="../silverlight.js"></script>-->
|
|||
|
<script type="text/javascript">
|
|||
|
dojo.require("dojox.gfx");
|
|||
|
|
|||
|
var surface;
|
|||
|
|
|||
|
makeShapes = function(){
|
|||
|
surface = dojox.gfx.createSurface("test", 500, 500);
|
|||
|
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>
|