forked from uniter/uniter-jquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fades.html
executable file
·55 lines (48 loc) · 1.74 KB
/
fades.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Uniter PHP Faders 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 Faders 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/Fades/app.php">Faders</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_cell" id="fade_in_button">
<h2>Fade In</h2>
</div>
<div class="right_cell" id="fade_out_button">
<h2>Fade Out</h2>
</div>
</div>
</div>
<div class="all_demos" id="fade_target">
<img src="img/loading.gif" />
</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>