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
// Draws star.
4
var star = acgraph.vector.primitives.star(stage, 100, 70, 50, 17, 7, 20, -0.9);
5
6
// color the star with a golden color
7
star.fill("gold");
8
9
// set the stroke color to the star
10
star.stroke("#000000", "4");