HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
var stage = acgraph.create("container");
2
stage.rect(22, 18, stage.width() - 44, stage.height() / 3 - 22)
3
.fill("none")
4
.stroke("5 orange .7");
5
6
stage.rect(22, stage.height() / 3 + 18, stage.width() - 44, stage.height() / 3 - 22)
7
.fill("none")
8
.stroke(["red", "blue"], 15);
9
10
stage.rect(22, 3 * stage.height() / 3 - 35, stage.width() - 44, 5)
11
.fill("none")
12
.stroke({
13
keys: [".1 red", "white"],
14
cx: .5,
15
cy: .5,
16
fx: .3,
17
fy: .4
18
}, 4);