domExample.html 902 B

12345678910111213141516171819202122232425262728293031323334
  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 - DOM usage</title>
  8. <style>
  9. babylon {
  10. width: 800px;
  11. height: 500px;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <babylon extends="minimal">
  17. <model url="https://playground.babylonjs.com/scenes/BoomBox.glb">
  18. <scaling x="10" y="10" z="10"></scaling>
  19. </model>
  20. <camera>
  21. <behaviors>
  22. <auto-rotate type="0"></auto-rotate>
  23. </behaviors>
  24. </camera>
  25. </babylon>
  26. <script src="viewer.js"></script>
  27. </body>
  28. </html>
  29. <html>
  30. </html>