Skip to content

Commit aae1dcc

Browse files
committed
Initial commit
0 parents  commit aae1dcc

File tree

17 files changed

+19392
-0
lines changed

17 files changed

+19392
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2019 Valery Alikin
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

build/css/main.css

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/index.html

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head lang="ru">
4+
<meta charset="utf-8">
5+
<meta http-equiv="x-ua-compatible" content="ie=edge">
6+
<title>Dots Loader</title>
7+
<meta name="description" content="">
8+
<meta name="viewport" content="width=device-width, initial-scale=1">
9+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
10+
<link rel="stylesheet" href="css/main.css">
11+
12+
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
13+
14+
<!-- Global site tag (gtag.js) - Google Analytics -->
15+
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-31485994-5"></script>
16+
<script>
17+
window.dataLayer = window.dataLayer || [];
18+
function gtag(){dataLayer.push(arguments);}
19+
gtag('js', new Date());
20+
21+
gtag('config', 'UA-31485994-5');
22+
</script>
23+
</head>
24+
<body>
25+
<!-- START CONTENT -->
26+
27+
<div class="four">
28+
<div class="dot d1"><div class="circle c4"></div></div>
29+
<div class="dot d2"><div class="circle c1"></div></div>
30+
<div class="dot d3"><div class="circle c2"></div></div>
31+
<div class="dot d4"><div class="circle c3"></div></div>
32+
<div class="dot d5"></div>
33+
<div class="dot d7"></div>
34+
<div class="dot d8"><div class="circle c6"></div></div>
35+
<div class="dot d9"></div>
36+
<div class="dot d10"><div class="circle c5"></div></div>
37+
<div class="dot d11"><div class="circle c8"></div></div>
38+
<div class="dot d12"><div class="circle c7"></div></div>
39+
<div class="dot d13"></div>
40+
<div class="dot d14"></div>
41+
<div class="dot d15"></div>
42+
<div class="dot d16"></div>
43+
<div class="dot d17"></div>
44+
<div class="dot d18"></div>
45+
<div class="dot d19"></div>
46+
<div class="dot d20"></div>
47+
<div class="dot d21"></div>
48+
<div class="dot d22"></div>
49+
<div class="dot d23"></div>
50+
<div class="dot d24"></div>
51+
<div class="dot d25"></div>
52+
</div>
53+
54+
<input class="progress" step=".001" type="range" min="0" max="100" value="0">
55+
56+
<!-- END CONTENT -->
57+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
58+
<script src="https://cdn.jsdelivr.net/npm/animejs@3.0.1/lib/anime.min.js"></script>
59+
<script src="js/main.js"></script>
60+
</body>
61+
</html>

0 commit comments

Comments
 (0)