-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (86 loc) · 3.57 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>TMDb API Site</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Alegreya+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="./loader.css">
<link rel="stylesheet" href="./cards.css">
</head>
<body>
<loader></loader>
<main>
<svg class="sp" viewBox="0 0 128 128" width="128px" height="128px" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient id="grad1" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#000" />
<stop offset="40%" stop-color="#fff" />
<stop offset="100%" stop-color="#fff" />
</linearGradient>
<linearGradient id="grad2" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#000" />
<stop offset="60%" stop-color="#000" />
<stop offset="100%" stop-color="#fff" />
</linearGradient>
<mask id="mask1">
<rect x="0" y="0" width="128" height="128" fill="url(#grad1)" />
</mask>
<mask id="mask2">
<rect x="0" y="0" width="128" height="128" fill="url(#grad2)" />
</mask>
</defs>
<g fill="none" stroke-linecap="round" stroke-width="16">
<circle class="sp__ring" r="56" cx="64" cy="64" stroke="#ddd" />
<g stroke="hsl(223,90%,50%)">
<path class="sp__worm1" d="M120,64c0,30.928-25.072,56-56,56S8,94.928,8,64" stroke="hsl(343,90%,50%)" stroke-dasharray="43.98 307.87" />
<g transform="translate(42,42)">
<g class="sp__worm2" transform="translate(-42,0)">
<path class="sp__worm2-1" d="M8,22c0-7.732,6.268-14,14-14s14,6.268,14,14" stroke-dasharray="43.98 175.92" />
</g>
</g>
</g>
<g stroke="hsl(283,90%,50%)" mask="url(#mask1)">
<path class="sp__worm1" d="M120,64c0,30.928-25.072,56-56,56S8,94.928,8,64" stroke-dasharray="43.98 307.87" />
<g transform="translate(42,42)">
<g class="sp__worm2" transform="translate(-42,0)">
<path class="sp__worm2-1" d="M8,22c0-7.732,6.268-14,14-14s14,6.268,14,14" stroke-dasharray="43.98 175.92" />
</g>
</g>
</g>
<g stroke="hsl(343,90%,50%)" mask="url(#mask2)">
<path class="sp__worm1" d="M120,64c0,30.928-25.072,56-56,56S8,94.928,8,64" stroke-dasharray="43.98 307.87" />
<g transform="translate(42,42)">
<g class="sp__worm2" transform="translate(-42,0)">
<path class="sp__worm2-1" d="M8,22c0-7.732,6.268-14,14-14s14,6.268,14,14" stroke-dasharray="43.98 175.92" />
</g>
</g>
</g>
</g>
</svg>
</main>
<!-- partial:index.partial.html -->
<div class="wrapper">
<div style="background-image: url(ttp://www.mypicx.com/uploadimg/1312875436_05012011_2.png)"></div>
<label class="search" for="search">
<input type="text" id="search" placeholder="Search..." data-search="no">
</label>
<h2><strong data-subject="Tv shows<span class='change'>(<blue>Movies</blue>)</span>" data-now="Movies<span class='change'>(<blue>Tv shows</blue>)</span>">Movies<span class="change">(<blue>Tv shows</blue>)</span></strong></h2>
<div class="cards" id="CardsHolder">
<!-- <figure class="card">
<img src="https://www.linkpicture.com/q/1_1484.jpg" />
<figcaption>Dota 2</figcaption>
</figure> -->
</div>
<div class="footer">
<span id="previous" data-page="prev" class="none"> < Previous Page</span>
<span data-pages="0" id="number">1</span>
<span id="next" data-page="next">Next Page ></span>
</div>
</div>
<!-- partial -->
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="index.js"></script>
</body>
</html>