-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (81 loc) · 1.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Electron with Express</title>
<style>
body {
overflow: hidden;
margin: 0;
padding: 0;
}
.loader {
border: 12px solid #f3f3f3;
border-radius: 50%;
border-top: 12px solid blue;
border-bottom: 12px solid blue;
width: 80px;
height: 80px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
#loading {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
#serverLog {
position: absolute;
width: 100%;
height: 100%;
display: none;
overflow: auto;
}
.expressApp {
display: flex !important;
position: absolute;
width: 100%;
height: 100%;
}
.expressAppHide {
flex: 0 1;
width: 0px;
height: 0px;
}
</style>
</head>
<body>
<div id="loading">
<div class="loader"></div>
</div>
<div id="serverLog"></div>
<iframe
id="expressApp"
class="expressApp"
title="Express App"
frameborder="0"
></iframe>
<script>
var exports = {};
</script>
<script src="./src/app.js"></script>
</body>
</html>