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
3
var longStepHatch = acgraph.hatchFill("diamiond", "black", 5, 20);
4
var shortStepHatch = acgraph.hatchFill("diamiond", "black", 2, 5);
5
6
stage.rect(100, 10, 400, 40).fill(longStepHatch);
7
stage.rect(100, 90, 400, 40).fill(shortStepHatch);
8
stage.rect(100, 170, 400, 40).fill(longStepHatch);
9
stage.rect(100, 240, 400, 40).fill(shortStepHatch);
10
stage.rect(100, 310, 400, 40).fill(longStepHatch);