-
Notifications
You must be signed in to change notification settings - Fork 0
/
jQuery.html
105 lines (96 loc) · 4.67 KB
/
jQuery.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
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>jQuery</title>
<meta name="description" content="" />
<meta name="author" content="jepicard" />
<meta name="viewport" content="width=device-width; initial-scale=1.0" />
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>
<link rel="stylesheet" href="jQuerySwipe/style.css" />
<script src="jQuerySwipe/script.js"></script>
</head>
<body>
<div data-role="header" data-theme="a">
<a href="index.html" data-icon="arrow-l" data-iconpos="notext" data-shadow="false" data-icon-shadow="false">Back</a>
<h1>jQuery</h1>
</div><!-- /header -->
<div data-role="collapsible-set" data-theme="a" data-content-theme="d">
<div data-role="collapsible">
<h3>Section 1</h3>
<p>
I'm the collapsible content for section 1
</p>
</div>
<div data-role="collapsible">
<h3>Section 2</h3>
<p>
I'm the collapsible content for section 2
</p>
</div>
<div data-role="collapsible">
<h3>Section 3</h3>
<p>
I'm the collapsible content for section 3
</p>
</div>
</div>
<div>
<table margin="0">
<tbody>
<tr>
<th><h3>fade</h3></th>
<td><a href="page-transition.html" data-role="button" data-transition="fade" data-inline="true">page</a></td>
</tr>
<tr>
<th><h3>pop</h3></th>
<td><a href="page-transition.html" data-role="button" data-transition="pop" data-inline="true">page</a></td>
</tr>
<tr>
<th><h3>flip</h3></th>
<td><a href="page-transition.html" data-role="button" data-transition="flip" data-inline="true">page</a></td>
</tr>
<tr>
<th><h3>turn</h3></th>
<td><a href="page-transition.html" data-role="button" data-transition="turn" data-inline="true">page</a></td>
</tr>
<tr>
<th><h3>flow</h3></th>
<td><a href="page-transition.html" data-role="button" data-transition="flow" data-inline="true">page</a></td>
</tr>
<tr>
<th><h3>slidefade</h3></th>
<td><a href="page-transition.html" data-role="button" data-transition="slidefade" data-inline="true">page</a></td>
</tr>
<tr>
<th><h3>slide</h3></th>
<td><a href="page-transition.html" data-role="button" data-transition="slide" data-inline="true">page</a></td>
</tr>
<tr>
<th><h3>slideup</h3></th>
<td><a href="page-transition.html" data-role="button" data-transition="slideup" data-inline="true">page</a></td>
</tr>
<tr>
<th><h3>slidedown</h3></th>
<td><a href="page-transition.html" data-role="button" data-transition="slidedown" data-inline="true">page</a></td>
</tr>
<tr>
<th><h3>none</h3></th>
<td><a href="page-transition.html" data-role="button" data-transition="none" data-inline="true">page</a></td>
</tr>
</tbody>
</table>
</div>
<a href="jQueryPopUp.html" data-role="button" data-theme="a">PopUp</a>
<a href="jQuerySwipe/paris.html" data-role="button" data-theme="a">Swipe</a>
<footer></footer>
</body>
</html>