forked from orizens/echoes-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (100 loc) · 2.72 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Echoes Player - Open Source Media Player for Youtube</title>
<link rel="manifest" href="assets/manifest.json">
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#03A9F4" />
<style type="text/css">
html body {
background-color: #03A9F4;
}
.loader-container {
display: flex;
height: 100%;
flex-direction: row;
align-items: center;
justify-content: center;
position: absolute;
width: 100%;
}
.spinner {
width: 40px;
height: 40px;
position: relative;
margin: 100px auto;
}
.loader-label {
position: absolute;
transform: translateX(-50%) translateY(-140%);
left: 50%;
opacity: 0.5;
font-size: 3rem;
font-family: "Open Sans Condensed";
text-align: center;
color: white;
}
.double-bounce1,
.double-bounce2 {
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #333;
opacity: 0.6;
position: absolute;
top: 0;
left: 0;
-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
animation: sk-bounce 2.0s infinite ease-in-out;
}
.double-bounce2 {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}
@-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>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href='https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300|Open+Sans' rel='stylesheet' type='text/css'>
<script async src="https://www.googletagmanager.com/gtag/js?id={GA_PROJECTID}"></script>
<script>
window.dataLayer = window.dataLayer || [];
window.GA_PROJECT_ID = '{GA_PROJECTID}';
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', window.GA_PROJECT_ID);
// gtag('set', {'user_id': 'USER_ID'});
</script>
<meta name="google-site-verification" content="{GA_VERIFY_CODE}" />
</head>
<body>
<section class="loader-container">
<aside class="loader-label">LOADING ECHOES PLAYER</aside>
<div class="spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
</section>
</body>
<script src="https://apis.google.com/js/platform.js?onload=apiLoaded" async defer></script>
</html>