File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed
src/apps/blazor/client/wwwroot Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change 17
17
18
18
< body >
19
19
< div id ="app ">
20
+ < style >
21
+ @keyframes slide {
22
+ 0% {
23
+ transform : translateX (-25% );
24
+ }
25
+
26
+ 100% {
27
+ transform : translateX (25% );
28
+ }
29
+ }
30
+
31
+ .fsh-wasm {
32
+ animation : slide 3s ease-in-out infinite alternate;
33
+ bottom : 0 ;
34
+ left : -50% ;
35
+ opacity : .5 ;
36
+ position : fixed;
37
+ right : -50% ;
38
+ top : 0 ;
39
+ z-index : -1
40
+ }
41
+
42
+ .fsh-wasm-cont {
43
+ left : 50% ;
44
+ padding : 10vmin ;
45
+ position : fixed;
46
+ text-align : center;
47
+ top : 50% ;
48
+ transform : translate (-50% , -50% )
49
+ }
50
+ </ style >
51
+
52
+ < div style ="height:100%;width:100%;margin:0;position:fixed; ">
53
+ < div class ="fsh-wasm "> </ div >
54
+ < div class ="fsh-wasm " style ="animation-direction:alternate-reverse;animation-duration:2s; "> </ div >
55
+ < div class ="fsh-wasm " style ="animation-duration:5s; "> </ div >
56
+ < div class ="fsh-wasm-cont ">
57
+ < img src ="/full-stack-hero-logo.png " Style ="height:350px; width:350px; opacity:0.8 " />
58
+ </ div >
59
+ </ div >
20
60
</ div >
21
61
22
62
< div id ="blazor-error-ui ">
You can’t perform that action at this time.
0 commit comments