-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
108 lines (97 loc) · 2.95 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
<!DOCTYPE html>
<html>
<head>
<title>Veva Rating Agency</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Veva Token Ratings Agency service">
<meta name="author" content="Alan Kaiser (Veva)">
<link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<!--link rel="icon" href="favicon.ico" type="image/x-icon"/-->
<!--link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/-->
<style>
.loading-message {
position: relative;
margin: 100px auto;
text-align: center;
color: #425164;
}
.spinner {
margin: 10px auto;
width: 40px;
height: 40px;
position: relative;
text-align: center;
-webkit-animation: sk-rotate 2.0s infinite linear;
animation: sk-rotate 2.0s infinite linear;
}
.dot1, .dot2 {
width: 60%;
height: 60%;
display: inline-block;
position: absolute;
top: 0;
background-color: #425164;
border-radius: 100%;
-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
animation: sk-bounce 2.0s infinite ease-in-out;
}
.dot2 {
top: auto;
bottom: 0;
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}
@-webkit-keyframes sk-rotate { 100% { -webkit-transform: rotate(360deg) }}
@keyframes sk-rotate { 100% { transform: rotate(360deg); -webkit-transform: rotate(360deg) }}
@-webkit-keyframes sk-bounce {
0%, 100% { -webkit-transform: scale(0.0) }
50% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bounce {
0%, 100% {
transform: scale(0.0);
-webkit-transform: scale(0.0);
} 50% {
transform: scale(1.0);
-webkit-transform: scale(1.0);
}
}
</style>
</head>
<body class="skin-black">
<div class="loader">
<p class="loading-message">
<i>
Veva Loading...
</i>
</p>
<div class="spinner">
<div class="dot1"></div>
<div class="dot2"></div>
</div>
</div>
<section id="root"></section>
<script type="text/javascript" src="/public/assets/bundle.js"></script>
<script type="text/javascript">
// loading fadeOut pure vanilla JS (I9+)
;(function(){
document.addEventListener("DOMContentLoaded", function(event) {
var el = document.querySelector('.loader');
fadeOut(el);
});
function fadeOut(el){
el.style.opacity = 1;
(function fade() {
if ((el.style.opacity -= .1) < 0.15) {
el.style.display = "none";
} else {
requestAnimationFrame(fade);
}
})();
}
})()
</script>
</body>
</html>