index-local.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Babylon.js Sandbox - View glTF, glb, obj and babylon files</title>
  5. <meta name="description" content="Viewer for glTF, glb, obj and babylon files powered by Babylon.js" />
  6. <meta name="keywords" content="Babylon.js, Babylon, BabylonJS, glTF, glb, obj, viewer, online viewer, 3D model viewer, 3D, webgl" />
  7. <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
  8. <link rel="stylesheet" href="https://use.typekit.net/cta4xsb.css">
  9. <link rel="shortcut icon" href="https://www.babylonjs.com/favicon.ico">
  10. <script src="https://code.jquery.com/pep/0.4.2/pep.min.js"></script>
  11. <script src="../../Tools/DevLoader/BabylonLoader.js"></script>
  12. <style>
  13. html,
  14. body {
  15. width: 100%;
  16. height: 100%;
  17. padding: 0;
  18. margin: 0;
  19. overflow: hidden;
  20. }
  21. #host-element {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. </style>
  26. </head>
  27. <body>
  28. <div id="host-element">
  29. </div>
  30. <script>
  31. // Load the scripts + map file to allow vscode debug.
  32. BABYLONDEVTOOLS.Loader
  33. .require("index.js")
  34. .load(() => {
  35. });
  36. </script>
  37. </body>
  38. </html>