OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 |
| 3 <!-- Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 4 for details. All rights reserved. Use of this source code is governed by a |
| 5 BSD-style license that can be found in the LICENSE file. --> |
| 6 |
| 7 <html> |
| 8 <head> |
| 9 <meta charset="utf-8"> |
| 10 <title>Solar System Demo</title> |
| 11 <link type="text/css" rel="stylesheet" href="solar.css"> |
| 12 </head> |
| 13 <body> |
| 14 <h1>Solar System 3D</h1> |
| 15 |
| 16 <p>A 3D solar system visualization using WebGL.</p> |
| 17 |
| 18 <div> |
| 19 <canvas id="container"></canvas> |
| 20 </div> |
| 21 <footer> |
| 22 <p id="summary">Click on the canvas to manipulate the simulation.<br> |
| 23 Use the mouse to zoom and the scroll wheel to rotate the view.<br> |
| 24 Key controls: <b>S</b>un, <b>J</b>upiter, <b>E</b>arth, and <b>F</b>ulls
creen. |
| 25 </p> |
| 26 <p id="notes"> </p> |
| 27 </footer> |
| 28 |
| 29 <script type="application/dart" src="solar.dart"></script> |
| 30 <script src="packages/browser/dart.js"></script> |
| 31 </body> |
| 32 </html> |
OLD | NEW |