| 123456789101112131415161718192021222324252627282930313233343536 |
- <rml>
- <head>
- <style>
- body
- {
- width: 100%;
- height: 100%;
- z-index: -1;
- }
-
- @decorator stars : starfield {
- num-layers: 5;
- top-colour: #fffc;
- bottom-colour: #fff3;
- top-speed: 80.0;
- bottom-speed: 20.0;
- top-density: 8;
- bottom-density: 20;
- }
- starfield
- {
- display: block;
- width: 100%;
- height: 100%;
- z-index: 1;
- decorator: stars;
- }
- </style>
- </head>
- <body>
- <img src="background.tga" />
- <starfield />
- </body>
- </rml>
|