-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (78 loc) · 4.24 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
<!DOCTYPE html>
<html>
<head>
<title>Watching Panels</title>
<link rel="stylesheet" type="text/css" href="./js/jquery-ui-1.10.0.custom/css/black-tie/jquery-ui-1.10.0.custom.min.css"/>
<link rel="stylesheet" type="text/css" href="./css/bootstrap/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="./css/bootstrap-switch.css"/>
<link rel="stylesheet" type="text/css" href="./css/watchingpanels.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="./js/jquery1.9.js"></script>
<script type="text/javascript" src="./js/jquery-ui-1.10.0.custom/js/jquery-ui-1.10.0.custom.min.js"></script>
<script type="text/javascript" src="./js/watchingpanels.js"></script>
<script type="text/javascript" src="./js/jquery.switch.js"></script>
<script type="text/javascript" src="./js/sylvester.js"></script>
</head>
<body>
<div id="main-wrapper">
<div id="header">
<div id="wrapper-sliders">
<div class="control-wrapper">
<span class="custom-label">Rows : </span>
<div class="slider-jui" id="slider-colonnes"></div>
</div>
<div class="control-wrapper">
<span class="custom-label">Lines : </span>
<div class="slider-jui" id="slider-lignes"></div>
</div>
<div class="control-wrapper">
<input type="button" id="apply-button" class="apply-button btn btn-inverse btn-block" value="Apply"/>
</div>
<div class="control-wrapper">
<span class="custom-label">Panels size : </span>
<div class="slider-jui" id="slider-size"></div>
</div>
<div class="control-wrapper">
<span class="custom-label">Perspective : </span>
<div class="slider-jui" id="slider-perspective"></div>
</div>
<div class="control-wrapper">
<span class="custom-label floatleft">Repulse-o-Panel : </span>
<div id="switch-repulse" class="switch switch-mini">
<input type="checkbox" checked="checked">
</div>
</div>
<div class="control-wrapper">
<span class="custom-label">Repulse-o-Panel strength : </span>
<div class="slider-jui" id="slider-repulse"></div>
</div>
<div class="control-wrapper">
<span class="custom-label floatleft">Keep panel orientation on drag : </span>
<div id="switch-orientation" class="switch switch-mini">
<input type="checkbox">
</div>
</div>
<br/>
<div class="control-wrapper">
<span class="custom-label floatleft">Flashlight mode : </span>
<div id="switch-flashlight" class="switch switch-mini">
<input type="checkbox" checked="checked">
</div>
</div>
<div class="control-wrapper">
<span class="custom-label">Flashlight size : </span>
<div class="slider-jui" id="slider-flashlight"></div>
</div>
<div class="control-wrapper">
<span class="custom-label">Corner radius : </span>
<div class="slider-jui" id="slider-corner"></div>
</div>
<div class="control-wrapper">
<span class="custom-label credits">Watching Panels - Florian Motteau</span>
</div>
</div>
</div>
<div class="page" id="page-wrapper"></div>
</div>
</body>
</html>