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 boldHatch = acgraph.hatchFill("diamiond", "black", 4);
4
var thinHatch = acgraph.hatchFill("diamiond", "black", 0.5);
5
6
stage.rect(100, 10, 400, 40);