-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (63 loc) · 2.57 KB
/
index.html
File metadata and controls
75 lines (63 loc) · 2.57 KB
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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="user-scalable=yes, width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/switches.css">
<link rel="stylesheet" type="text/css" href="css/progress.css">
<title>Progress</title>
</head>
<body>
<div class="container">
<div class="inner-container">
<div class="b-progress">
<div class="b-progress__loader">
<div class="b-progress__loader_status"></div>
</div>
</div>
</div>
<div class="inner-container">
<div class="b-switches">
<div class="b-switches__line">
<div class="b-left">
<form action="" class="b-left__switch">
<input type="text" id="input" class="b-left__switch_input" maxlength="3">
</form>
</div>
<div class="b-right">
<label for="" class="b-right__label">Value</label>
</div>
</div>
<div class="b-switches__line">
<div class="b-left">
<div class="b-left__switch">
<div class="b-left__switch__animation">
<div class="b-left__switch__animation_ball"></div>
</div>
</div>
</div>
<div class="b-right">
<label for="" class="b-right__label">Animation</label>
</div>
</div>
<div class="b-switches__line">
<div class="b-left">
<div class="b-left__switch">
<div class="b-left__switch__hide">
<div class="b-left__switch__hide_ball"></div>
</div>
</div>
</div>
<div class="b-right">
<label for="" class="b-right__label">Hide</label>
</div>
</div>
</div>
</div>
</div>
<script src="js/progress.js" type="text/javascript"></script>
<script src="js/switches.js" type="text/javascript"></script>
<script src="js/index.js" type="text/javascript"></script>
</body>
</html>