5
5
< meta name ="viewport " content ="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no " />
6
6
< title > XR# Community Toolkit</ title >
7
7
< base href ="/ " />
8
+ < script >
9
+ ( function ( ) {
10
+ const style = document . createElement ( 'link' ) ;
11
+ style . setAttribute ( 'rel' , 'stylesheet' ) ;
12
+ style . setAttribute ( 'type' , 'text/css' ) ;
13
+ style . setAttribute ( 'href' , 'loading-indicator.css?date=' + new Date ( ) . toISOString ( ) ) ;
14
+ document . head . appendChild ( style ) ;
15
+ const script = document . createElement ( 'script' ) ;
16
+ script . setAttribute ( 'type' , 'application/javascript' ) ;
17
+ script . setAttribute ( 'src' , 'libs/opensilver.js?date=' + new Date ( ) . toISOString ( ) ) ;
18
+ document . head . appendChild ( script ) ;
19
+ } ) ( ) ;
20
+ </ script >
8
21
</ head >
9
22
< body >
10
- < div id ="app " style ="position:absolute;width:100%;height:100%;left:0;top:0; "> </ div >
23
+ < div id ="app ">
24
+ < div class ="loading-indicator-wrapper ">
25
+ < div class ="loading-indicator ">
26
+ < div class ="loading-indicator-ball "> </ div >
27
+ < div class ="loading-indicator-ball "> </ div >
28
+ < div class ="loading-indicator-ball "> </ div >
29
+ < div class ="loading-indicator-ball "> </ div >
30
+ < div class ="loading-indicator-ball "> </ div >
31
+ < div class ="loading-indicator-ball "> </ div >
32
+ < div class ="loading-indicator-ball "> </ div >
33
+ < div class ="loading-indicator-ball "> </ div >
34
+ < div class ="loading-indicator-ball "> </ div >
35
+ < div class ="loading-indicator-ball "> </ div >
36
+ < div class ="loading-indicator-ball "> </ div >
37
+ < div class ="loading-indicator-ball "> </ div >
38
+ < div class ="loading-indicator-ball "> </ div >
39
+ < div class ="loading-indicator-ball "> </ div >
40
+ < div class ="loading-indicator-ball "> </ div >
41
+ < div class ="loading-indicator-ball "> </ div >
42
+ < div class ="loading-indicator-text "> </ div >
43
+ </ div >
44
+ </ div >
45
+ </ div >
11
46
< div id ="opensilver-root " style ="position: relative; width: 100%; height: 100%; overflow-x: hidden; overflow-y: hidden "> </ div >
12
47
13
- <!-- loading indicator -->
14
- <!-- modify these files to change the loading animation -->
15
- < link rel ="stylesheet " type ="text/css " href ="loading-indicator.css " />
16
- < script type ="text/javascript " src ="loading-indicator.js "> </ script >
17
-
18
- < script src ="_framework/blazor.webassembly.js " autostart ="false "> </ script >
19
- < script type ="text/javascript " src ="libs/opensilver.js "> </ script >
20
- < script type ="text/javascript " src ="BlazorLoader.js "> </ script >
48
+ < script src ="_framework/blazor.webassembly.js "> </ script >
21
49
</ body >
22
50
</ html >
0 commit comments