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
stage.rect(30, 30, 110, 30);
3
4
var simpleText = stage.text(35, 30);
5
simpleText.height(35);
6
simpleText.width(110);
7
8
// Get word-wrap mode.
9
var mode = simpleText.wordWrap();
10
11
simpleText.text('Word-wrap mode is ' + '\'' + mode + '\'');