-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (80 loc) · 2.58 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
<!doctype html>
<html lang="en">
<head>
<!-- Base -->
<title><%= title %></title>
<meta charset="UTF-8" />
<meta name="robots" content="<%= robotsMeta %>" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="apple-touch-icon" sizes="180x180" href="<%= icon180 %>" />
<link rel="shortcut icon" href="<%= icon64 %>" />
<!-- Preview -->
<style>
/* Стили для PreviewWrapper */
.preview-wrapper {
z-index: 9999;
background-color: #ffffff;
width: 100dvw;
height: 100dvh;
position: fixed;
top: 0;
left: 0;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
opacity: 1;
transform: translateY(0);
transition:
opacity 0.5s ease,
transform 0.5s ease;
}
.preview-wrapper.visible {
opacity: 0;
transform: translateY(0);
}
/* Стили для PreviewLoading */
.preview-loading {
width: 8vmin;
height: 8vmin;
color: #1769a5;
}
.preview-loading svg {
height: 100%;
min-height: 100%;
width: 100%;
min-width: 100%;
}
</style>
</head>
<body>
<div class="preview-wrapper">
<div class="preview-loading">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" class="sc-ffiKcS dAtnQN">
<g fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2">
<path stroke-dasharray="16" stroke-dashoffset="16" d="M12 3c4.97 0 9 4.03 9 9">
<animate fill="freeze" attributeName="stroke-dashoffset" dur="0.3s" values="16;0"></animate>
<animateTransform
attributeName="transform"
dur="1.5s"
repeatCount="indefinite"
type="rotate"
values="0 12 12;360 12 12"
></animateTransform>
</path>
<path
stroke-dasharray="64"
stroke-dashoffset="64"
stroke-opacity="0.3"
d="M12 3c4.97 0 9 4.03 9 9c0 4.97 -4.03 9 -9 9c-4.97 0 -9 -4.03 -9 -9c0 -4.97 4.03 -9 9 -9Z"
>
<animate fill="freeze" attributeName="stroke-dashoffset" dur="1.2s" values="64;0"></animate>
</path>
</g>
</svg>
</div>
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>