dlzn-ui 1.57.0 → 1.58.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.html +57 -0
- package/package.json +1 -1
package/index.html
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<link rel="icon" href="/favicon.ico" />
|
|
6
|
+
<meta
|
|
7
|
+
name="viewport"
|
|
8
|
+
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"
|
|
9
|
+
/>
|
|
10
|
+
<title><%- title %></title>
|
|
11
|
+
<style>
|
|
12
|
+
html,
|
|
13
|
+
body,
|
|
14
|
+
#app {
|
|
15
|
+
height: 100%;
|
|
16
|
+
margin: 0;
|
|
17
|
+
}
|
|
18
|
+
</style>
|
|
19
|
+
</head>
|
|
20
|
+
<body>
|
|
21
|
+
<div id="app" class="relative"></div>
|
|
22
|
+
<div id="landing">
|
|
23
|
+
<style>
|
|
24
|
+
:root {
|
|
25
|
+
--landing-ele-size: clamp(60px, 8vw, 240px);
|
|
26
|
+
}
|
|
27
|
+
body {
|
|
28
|
+
margin: 0;
|
|
29
|
+
}
|
|
30
|
+
#landing {
|
|
31
|
+
position: fixed;
|
|
32
|
+
width: 100%;
|
|
33
|
+
height: 100%;
|
|
34
|
+
background: #fff;
|
|
35
|
+
z-index: calc(Infinity);
|
|
36
|
+
display: flex;
|
|
37
|
+
justify-content: center;
|
|
38
|
+
align-items: center;
|
|
39
|
+
top: 0;
|
|
40
|
+
left: 0;
|
|
41
|
+
flex-direction: column;
|
|
42
|
+
transition: opacity 1s ease-in-out;
|
|
43
|
+
font-size: clamp(12px, 0.9vw, 24px);
|
|
44
|
+
}
|
|
45
|
+
#landing .landing_ele {
|
|
46
|
+
width: var(--landing-ele-size);
|
|
47
|
+
margin-bottom: 2vw;
|
|
48
|
+
position: relative;
|
|
49
|
+
}
|
|
50
|
+
</style>
|
|
51
|
+
<% if (appId === '1') { %> <%- include('slide-puzzle.ejs') %> <% } %>
|
|
52
|
+
<div style="font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif">
|
|
53
|
+
正在加载系统资源,请耐心等待
|
|
54
|
+
</div>
|
|
55
|
+
</div>
|
|
56
|
+
</body>
|
|
57
|
+
</html>
|
package/package.json
CHANGED