-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
243 lines (220 loc) · 8.69 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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>GDSC Loading spinner</title>
<meta name="description"
content="A Loading spinner for the Google Developer student clubs. Passionately made by chapter Danang university of Technology" />
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="/img/favicon.ico" />
<link rel="icon" type="image/png" sizes="32x32" href="/img/dsc_icon.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/img/dsc_icon.png" />
<!-- Apple -->
<meta name="apple-mobile-web-app-title" content="DSC Loading spinner" />
<link rel="apple-touch-icon" sizes="180x180" href="/img/dsc_icon_light.png" />
<link rel="mask-icon" href="/img/logo.svg" color="grey" />
<meta name="robots" content="index, follow" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Google Loading spinner" />
<meta property="og:description"
content="A Loading spinner for the Google Developer student clubs. Passionately made by chapter Danang university of Technology" />
<meta property="og:image" content="/img/thumbnail.png" />
<meta property="og:url" content="http://loading.vndsc.com/" />
<meta property="og:site_name" content="DSC Loading spinner" />
<!-- -->
<meta name="twitter:title" content="DSC Loading spinner" />
<meta name="twitter:description"
content="A Loading spinner for the Google Developer student clubs. Passionately made by chapter Danang university of Technology" />
<meta name="twitter:image" content="/img/thumbnail.png" />
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/dsc-loader.min.css" />
<link rel="stylesheet" href="./css/google-spinner.min.css" />
<link rel="stylesheet" href="./css/google-bounce.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Google+Sans:wght@500&display=swap" rel="stylesheet" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-ZL0THXQTQQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-ZL0THXQTQQ');
</script>
</head>
<body>
<div id="app">
<h1>
Google Loaders
</h1>
<h4>
Helpful Google loaders animation built with HTML & CSS, also MP4 and GIF formats are provided for other purposes
</h4>
<div class="container">
<div class="wrapper">
<!-- GDSC LOADER -->
<div class="loader">
<div class="dot dot1"></div>
<div class="dot dot2"></div>
<div class="dot dot3"></div>
<div class="dot dot4"></div>
<div class="dot dot5"></div>
<div class="dot dot6"></div>
<div class="dot dot7"></div>
</div>
<!-- END GDSC LOADER -->
</div>
<div class="wrapper">
<!-- GOOGLE SPINNER -->
<div class="spinner">
<svg class="circular" viewBox="25 25 50 50">
<circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="2" stroke-miterlimit="10" />
</svg>
</div>
<!-- END GOOGLE SPINNER -->
</div>
<div class="wrapper">
<!-- GOOGLE BOUNCE -->
<div class="bounce">
<div class="loader-bounce bounce-blue"></div>
<div class="loader-bounce bounce-red"></div>
<div class="loader-bounce bounce-yellow"></div>
<div class="loader-bounce bounce-green"></div>
</div>
<!-- END GOOGLE BOUNCE -->
</div>
</div>
<!-- GITHUB BUTTONS -->
<div class="github-buttons">
<a class="github-button" href="https://github.com/dscdut/loading.vndsc.com" data-size="large"
data-show-count="true" aria-label="Star dscdut/loading.vndsc.com on GitHub">
Star
</a>
<a class="github-button" href="https://github.com/dscdut/loading.vndsc.com/archive/master.zip" data-size="large"
aria-label="Download dscdut/loading.vndsc.com on GitHub">
Download
</a>
</div>
<!-- END GITHUB BUTTON -->
<h2>
Use it in your code:
</h2>
<div class="container">
<div class="guide-wrapper">
<h3>GDSC Loading Spinner</h3>
<p>
Copy minified CSS from this file
<a href="/css/dsc-loader.min.css" target="_blank" rel="noopener noreferrer">
(Click here)
</a>
</p>
<p>
Then add HTML in your code:
</p>
<pre class="code-wrapper">
<div class="loader">
<div class="dot dot1"></div>
<div class="dot dot2"></div>
<div class="dot dot3"></div>
<div class="dot dot4"></div>
<div class="dot dot5"></div>
<div class="dot dot6"></div>
<div class="dot dot7"></div>
</div>
</pre>
</div>
<div class="guide-wrapper">
<h3>Google Loading Spinner</h3>
<p>
Copy minified CSS from this file
<a href="/css/google-spinner.min.css" target="_blank" rel="noopener noreferrer">
(Click here)
</a>
</p>
<p>
Then add HTML in your code:
</p>
<pre class="code-wrapper">
<div class="spinner">
<svg class="circular" viewBox="25 25 50 50">
<circle
class="path"
cx="50"
cy="50"
r="20"
fill="none"
stroke-width="2"
stroke-miterlimit="10"
/>
</svg>
</div>
</pre>
</div>
<div class="guide-wrapper">
<h3>Google Loading Bounce</h3>
<p>
Copy minified CSS from this file
<a href="/css/google-bounce.min.css" target="_blank" rel="noopener noreferrer">
(Click here)
</a>
</p>
<p>
Then add HTML in your code:
</p>
<pre class="code-wrapper">
<div class="bounce">
<div class="loader-bounce bounce-blue"></div>
<div class="loader-bounce bounce-red"></div>
<div class="loader-bounce bounce-yellow"></div>
<div class="loader-bounce bounce-green"></div>
</div>
</pre>
</div>
</div>
<h2>
Use it in your media:
</h2>
<div class="container downloadable">
<div class="media-wrapper">
<h3>DSC Loading Spinner</h3>
<a href="./download/dsc-loader-compressed.mp4" download target="_blank" rel="noopener noreferrer">
Download Full HD MP4 compressed - 422Kb (Recommended)
</a>
<a href="./download/dsc-loader.mp4" download target="_blank" rel="noopener noreferrer">
Download Full HD MP4 original - 5.02Mb
</a>
<a href="./download/dsc-loader.gif" download target="_blank" rel="noopener noreferrer">
Download GIF - 548Kb
</a>
</div>
<div class="media-wrapper">
<h3>Google Loading Spinner</h3>
<a href="./download/google-loader-compressed.mp4" download target="_blank" rel="noopener noreferrer">
Download Full HD MP4 compressed - 349Kb (Recommended)
</a>
<a href="./download/google-loader.mp4" download target="_blank" rel="noopener noreferrer">
Download Full HD MP4 original - 3.65Mb
</a>
<a href="./download/googler-loader.gif" download target="_blank" rel="noopener noreferrer">
Download GIF - 289Kb
</a>
</div>
<div class="media-wrapper">
<h3>Google Loading Bounce</h3>
<a href="./download/google-bounce-compressed.mp4" download target="_blank" rel="noopener noreferrer">
Download Full HD MP4 compressed - 965Kb (Recommended)
</a>
<a href="./download/google-bounce.mp4" download target="_blank" rel="noopener noreferrer">
Download Full HD MP4 original - 965Kb
</a>
<a href="./download/google-bounce.gif" download target="_blank" rel="noopener noreferrer">
Download GIF - 68Kb
</a>
</div>
</div>
</div>
<!-- Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>