1 /* Copyright 2011 The Dominion of Awesome
2 * See COPYING for licensing information */
6 style: "background-color: #2ab40f",
8 {name: "clouds", style: "height: 200px; background-image: url(hacks/Landscape/clouds.png)"},
9 {name: "mountains", style: "height: 200px; background-image: url(hacks/Landscape/mountains.png)"},
10 {name: "trees", style: "height: 200px; background-image: url(hacks/Landscape/trees.png)"}
13 this.inherited(arguments);
18 this.timer = setInterval(this.draw.bind(this), 33);
21 clearInterval(this.timer);
29 this.$.clouds.applyStyle("background-position", (this.n * 1.5) + "px top");
30 this.$.mountains.applyStyle("background-position", (this.n * 2.5) + "px top");
31 this.$.trees.applyStyle("background-position", (this.n * 7.5) + "px top");