defaultTemplate.html 683 B

123456789101112131415161718192021222324252627282930
  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. width: 100%;
  23. height: 100%;
  24. }
  25. </style>
  26. <viewer></viewer>
  27. <loading-screen></loading-screen>