index.html 695 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta content="text/html; charset=windows-1252" http-equiv="content-type"/>
  5. <title>ObJS</title>
  6. <!--Script files -->
  7. <script type="text/javascript" src="script/ObJS.js"></script>
  8. <!-- CSS files -->
  9. </head>
  10. <body>
  11. <select id="objSelector" name="objSelector" onChange="loadModel(this)">
  12. <option value="cube" selected="selected">Cube</option>
  13. <option value="2cube">Two Cubes</option>
  14. <option value="complex">Complex Object</option>
  15. <option value="2complex">Two Complex Objects</option>
  16. </select>
  17. <br/>
  18. <canvas id="ObJSCanvas" width="400" height="400">
  19. Your browser does not support the HTML5 canvas tag.
  20. </canvas>
  21. </body>
  22. </html>