forked from theanam/css-only-loaders
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (56 loc) · 2.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>CSS Only Loaders</title>
<link rel="stylesheet" href="homepage-assets/style.css">
<!-- spinners -->
<link rel="stylesheet" href="spinners/vars.css">
<link rel="stylesheet" href="spinners/circle/circle.css">
<link rel="stylesheet" href="spinners/blasting-circle/blasting-circle.css">
<link rel="stylesheet" href="spinners/rotating-plane/rotating-plane.css">
<link rel="stylesheet" href="spinners/bouncing-circle/bouncing-circle.css">
<link rel="stylesheet" href="spinners/blasting-ripple/blasting-ripple.css">
<link rel="stylesheet" href="spinners/color-pulse-ball/color-pulse-ball.css">
<link rel="stylesheet" href="spinners/clock/clock.css">
<link rel="stylesheet" href="spinners/double-circle/double-circle.css">
<style>
.spinner, .ripple {
margin-bottom: 20px;
}
</style>
<link rel="stylesheet" href="spinners/quantum-spinner/quantum-spinner.css">
</head>
<body>
<h1>Click on the Spinners to see CSS Styles</h1>
<p>
Homepage Under construction
</p>
<div class="spinner circle"></div>
<div class="spinner blasting-circle"></div>
<div class="spinner rotating-plane"></div>
<div class="spinner bouncing-circle"></div>
<div class="ripple blasting-ripple"></div>
<div class="spinner color-pulse-ball"></div>
<div class="spinner clock"></div>
<div class="spinner double-circle"></div>
<div class="spinner quantum-spinner"></div>
<p>
<a href="https://github.com/theanam/css-only-loaders">🐔 View Source on Github</a>
</p>
<p>
To use the loaders from this project. see the <code>/spinners</code> folder for corresponding css file.
All the attributes are in the <code>/spinners/values.css</code> file. you need to include that file before the spinner CSS file.
see the source code to this file <code>/index.html</code> for example usage.
</p>
<div class="sourceholder">
<pre class="source">
<code class="actual-code"></code>
</pre>
</div>
<script src="homepage-assets/jquery-3.4.1.min.js"></script>
<script src="homepage-assets/homepage.js"></script>
</body>
</html>