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 simpleText = stage.text(20, 20, 'Simple text.');
4
5
6
var height = simpleText.getTextHeight();
7
8
var simpleText2 = stage.text(20, 40);
9
simpleText2.text('Simple text height is ' + height + '.');