| 123456789101112131415161718192021222324252627282930 |
- <style>
- loading-screen {
- position: absolute;
- z-index: 100;
- opacity: 1;
- pointer-events: none;
- display: flex;
- justify-content: center;
- align-items: center;
- -webkit-transition: opacity 1.5s ease;
- -moz-transition: opacity 1.5s ease;
- transition: opacity 1.5s ease;
- }
- viewer {
- position: relative;
- overflow: hidden;
- /* Start stage */
- flex: 1;
- z-index: 1;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: 100%;
- }
- </style>
- <viewer></viewer>
- <loading-screen></loading-screen>
|