forked from vineethtrv/css-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (81 loc) · 4.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="mask-icon" href="images/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS3 Loaders and Spinners</title>
<!-- Search Engine -->
<meta name="title" content="CSS3 loaders and spinner">
<meta name="description" content="A usual situation that we all might face while going through websites is to wait for some progress or something to get loaded. A most common solution in such scenarios is to use a loader,spinner to indicate users This is a library having a collection of such loaders,spinners . There is no image dependencies in this. It's is done using pure CSS. Hence it is easily customization too">
<!-- Schema.org for Google -->
<meta itemprop="name" content="CSS3 loaders and spinner">
<meta itemprop="description" content="A usual situation that we all might face while going through websites is to wait for some progress or something to get loaded. A most common solution in such scenarios is to use a loader,spinner to indicate users This is a library having a collection of such loaders,spinners . There is no image dependencies in this. It's is done using pure CSS. Hence it is easily customization too">
<meta name="image" content="https://css3loaders.github.io/images/Loader-screen.png">
<!-- Open Graph general (Facebook, Pinterest & Google+) -->
<meta name="og:title" content="CSS3 loaders and spinners">
<meta name="og:description" content="A usual situation that we all might face while going through websites is to wait for some progress or something to get loaded. A most common solution in such scenarios is to use a loader, spinner to indicate users This is a library having a collection of such loaders, spinners. There are no image dependencies in this. It's is done using pure CSS. Hence it is easily customization too">
<meta name="og:image" content="https://css3loaders.github.io/images/Loader-screen.png">
<meta name="og:url" content="https://css3loaders.github.io/">
<meta name="og:site_name" content="CSS3 loaders and spinners">
<meta name="fb:admins" content="https://www.facebook.com/vinithtrv">
<meta name="og:type" content="website">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="CSS3 loaders and spinners">
<meta name="twitter:description" content="A usual situation that we all might face while going through websites is to wait for some progress or something to get loaded. A most common solution in such scenarios is to use a loader, spinner to indicate users This is a library having a collection of such loaders, spinners. There are no image dependencies in this. It's is done using pure CSS. Hence it is easily customization too">
<meta property="twitter:url" content="https://css3loaders.github.io/">
<meta name="twitter:creator" content="@vineethtrv">
<meta name="twitter:image:src" content="https://css3loaders.github.io/images/Loader-screen.png">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<span class="brand"> L ader </span>
<nav>
<a class="nav-btn codepen" target="_blank" href="https://codepen.io/vineethtrv/pen/NWxZqMM"></a>
<a class="nav-btn git" target="_blank" href="https://github.com/vineethtrv/css-loader"></a>
</nav>
</header>
<main id="main">
<div class="section" id="demo">
<span class="loader"></span>
</div>
</main>
<footer>
<a href="https://vineethtrv.github.io/" target="_blank" >
<span>👨‍💻</span>
Vineeth TR
</a>
</footer>
<div class="overlay">
<div class="popup">
<button class="btn-close">×</button>
<div class="showcase"></div>
<div class="code-content">
<div class="code-area">
<div class="code-header">
HTML
<button class="copy" data-id="markup">Copy</button>
</div>
<code id="markup"></code>
</div>
<div class="code-area">
<div class="code-header">
CSS
<button class="copy" data-id="css">Copy</button>
</div>
<code id='css'></code>
</div>
</div>
</div>
</div>
<script type="module" src="./js/app.js"></script>
</body>
</html>