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 simpleLayer = stage.layer();
4
5
var rectangle = new acgraph.math.Rect(10, 20, 55, 55);
6
7
// Adds rounded rectangle.
8
simpleLayer.roundedRect(rectangle, 25, 10);