forked from uniter/uniter-jquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sliders.html
executable file
·62 lines (52 loc) · 1.91 KB
/
sliders.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Uniter PHP Sliders Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body id="counting_elements">
<div class="full_row">
<h1>
Uniter PHP Sliders Demo
</h1>
<p>
The logic for this page is written entirely in PHP,
see <a href="//github.com/uniter/uniter-jquery/blob/master/php/src/Sliders/app.php">Sliders</a>
for a look at the php code.
</p>
</div>
<div class="full_row">
<div class="all_demos" id="demo_element_list">
<div class="demo_entry demo_title_entry">
<div class="left_three_cell" id="up_slide_button">
<h2>Up Slider</h2>
</div>
<div class="centre_three_cell" id="toggle_slide_button">
<h2>Toggle Slider</h2>
</div>
<div class="right_three_cell" id="down_slide_button">
<h2>Down Slider</h2>
</div>
</div>
</div>
</div>
<div class="full_row" id="demo_slider_wrap">
<div id="demo_slider">
</div>
</div>
<div class="full_row">
<h2>
<a href="index.html">
Back To Home
</a>
</h2>
<a href="https://github.com/uniter/uniter-jquery">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="img/forkme_right_green.png" alt="Fork me on GitHub" />
</a>
</div>
<script src="dist/bundle.js"></script>
</body>
</html>