Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F944524
test_resize.html
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
test_resize.html
View Options
<
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
>
File Metadata
Details
Attached
Mime Type
text/html
Expires
Fri, Apr 25, 22:27 (1 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
27216
Default Alt Text
test_resize.html (2 KB)
Attached To
rZED Zed
Event Timeline
Log In to Comment