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
// set the text
4
text = stage.text(20,20,"This is my custom text");
5
6
// create the text style
7
text.fontFamily("Georgia");
8
text.fontSize("15px");
9
text.color("green");