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
// create the text style object
4
textStyle = {fontFamily: "Georgia", fontSize: "15px", color: "green"};
5
6
// create the text element
7
text = acgraph.text(20, 20, "This is my custom text", textStyle);
8
9
// get the text element bounds and create the rect
10
rect = stage.rect(text.getX(), text.getY(), text.getWidth(), text.getHeight());
11
rect.fill("gold");
12
13
// set the stage as a parent of your text
14
text.parent(stage);