defaultTemplate.html 636 B

123456789101112131415161718192021222324252627
  1. <style>
  2. loading-screen {
  3. position: absolute;
  4. z-index: 100;
  5. opacity: 1;
  6. pointer-events: none;
  7. display: flex;
  8. justify-content: center;
  9. align-items: center;
  10. -webkit-transition: opacity 1.5s ease;
  11. -moz-transition: opacity 1.5s ease;
  12. transition: opacity 1.5s ease;
  13. }
  14. viewer {
  15. position: relative;
  16. overflow: hidden;
  17. /* Start stage */
  18. flex: 1;
  19. z-index: 1;
  20. justify-content: center;
  21. align-items: center;
  22. }
  23. </style>
  24. <viewer></viewer>
  25. <loading-screen></loading-screen>