-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathindex.html
150 lines (146 loc) · 5.37 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html style="font-size: 100px;">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<meta http-equiv="Cache-Control" content="no-store, must-revalidate" />
<meta http-equiv="expires" content="0" />
<meta name="format-detection" content="telephone=no" />
<meta name="format-detection" content="email=no" />
<meta
name="description"
content="ViteX, Exchange By the Community, For the Community"
/>
<meta
name="keywords"
content="vite, vitex, crypto,dag,bitcoin,vitecoin,contract platform, vitex exchange"
/>
<link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
<link rel="apple-touch-startup-image" href="logo.png" />
<title>Vite Wallet</title>
<script async src="/charting_library/charting_library.min.js"></script>
<!-- google recaptcha -->
<script src="https://www.google.com/recaptcha/api.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-132666177-1"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-132666177-1');
</script>
</head>
<body>
<div id="app">
<div class="app-loading-wrapper">
<div id="loading" class="spinner spinner-animate">
<img src="./logo.png"/>
</div>
</div>
</div>
<style>
body {
margin: 0;
padding: 0;
font-size: 18px;
}
.app-loading-wrapper {
background: #fff;
height: 100vh;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
}
.spinner-animate {
-webkit-animation: sk-rotateplane 2.4s infinite ease-in-out;
animation: sk-rotateplane 2.4s infinite ease-in-out;
}
.spinner {
width: 80px;
height: 80px;
opacity: 1;
transition: all 0.8s ease-in-out;
}
.dis {
transform: scale(3, 3);
opacity: 0;
}
.loading {
width: 100%;
height: 100%;
}
@-webkit-keyframes sk-rotateplane {
0% {
-webkit-transform: perspective(120px) rotateX(0deg)
rotateY(0deg);
}
25% {
-webkit-transform: perspective(120px) rotateX(-180deg)
rotateY(0deg);
}
50% {
-webkit-transform: perspective(120px) rotateX(-180deg)
rotateY(180deg);
}
75% {
-webkit-transform: perspective(120px) rotateX(-0deg)
rotateY(180deg);
}
100% {
-webkit-transform: perspective(120px) rotateX(-0deg)
rotateY(-0deg);
}
}
@keyframes sk-rotateplane {
0% {
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
-webkit-transform: perspective(120px) rotateX(0deg)
rotateY(0deg);
}
25% {
transform: perspective(120px) rotateX(-180deg) rotateY(0deg);
-webkit-transform: perspective(120px) rotateX(-180deg)
rotateY(0deg);
}
50% {
transform: perspective(120px) rotateX(-180deg)
rotateY(180deg);
-webkit-transform: perspective(120px) rotateX(-180deg)
rotateY(180deg);
}
75% {
transform: perspective(120px) rotateX(-0deg) rotateY(180deg);
-webkit-transform: perspective(120px) rotateX(-0deg)
rotateY(180deg);
}
100% {
transform: perspective(120px) rotateX(0deg) rotateY(0deg);
-webkit-transform: perspective(120px) rotateX(0deg)
rotateY(0deg);
}
}
</style>
<script>
let theme = 1;
var _localStorage = window.viteWalletStorage || window.localStorage;
try {
var pathname = location.pathname.toLocaleLowerCase();
var _theme =
_localStorage.getItem('VITE_WEB_WALLET:theme') || 1;
theme = pathname.indexOf('mobiledex') === -1 ? _theme : 0;
} catch (err) {}
document.documentElement.setAttribute('data-theme', theme);
</script>
<script type="module" src="/srcPC/index.js"></script>
</body>
</html>