printExample.html 671 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>BabylonJS Viewer - 3D Print usage</title>
  8. <style>
  9. babylon {
  10. width: 800px;
  11. height: 500px;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <babylon templates.nav-bar.params.hide-print="false">
  17. <model url="https://playground.babylonjs.com/scenes/BoomBox.glb">
  18. </model>
  19. </babylon>
  20. <script src="viewer.js"></script>
  21. </body>
  22. </html>