<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
// create a stage
var stage = acgraph.create("container");
// draw a circle
stage.circle(200, 250, 100);
// create a square
stage.rect(25, 50, 350, 300);