defaultViewer.html 486 B

1234567891011121314151617181920212223242526
  1. <style>
  2. viewer {
  3. position: relative;
  4. overflow: hidden;
  5. /* Start stage */
  6. flex: 1;
  7. z-index: 1;
  8. justify-content: center;
  9. align-items: center;
  10. width: 100%;
  11. height: 100%;
  12. }
  13. .babylonjs-canvas {
  14. flex: 1;
  15. width: 100%;
  16. height: 100%;
  17. touch-action: none;
  18. }
  19. </style>
  20. <canvas class="babylonjs-canvas" id="{{canvasId}}">
  21. </canvas>
  22. <nav-bar></nav-bar>