-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (61 loc) · 2.44 KB
/
Copy pathindex.html
File metadata and controls
66 lines (61 loc) · 2.44 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery windowPanes Demo</title>
<link rel="stylesheet" type="text/css" href="css/default.css" />
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<script type="text/javascript" src="jquery/jquery-ui-1.8.24.custom.min.js"></script>
<script type="text/javascript" src="jquery/jquery.mobile.custom.js"></script>
<script type="text/javascript" src="/src/jquery.windowPanes.0.4.2.js"></script>
</head>
<body style='background:#999;'>
<div class='window_frame' style='display:none'>
<div class='pane' id='pane_1' data-title="<h1>Pane 1</h1><p>This is pane 1's title</p>">
<div class='prev_pane'></div>
<div class="pane_content">
<!-- The content of pane 1 goes in here -->
</div>
<div class='next_pane'></div>
</div>
<div class='pane' id='pane_2' data-title="<h1>Pane 2</h1><p>This is pane 2's title</p>">
<div class='prev_pane'></div>
<div class="pane_content">
<!-- The content of pane 2 goes in here -->
</div>
<div class='next_pane'></div>
</div>
<div class='pane' id='pane_3' data-title="<h1>Pane 3</h1><p>This is pane 3's title</p>">
<div class='prev_pane'></div>
<div class="pane_content">
<!-- The content of pane 2 goes in here -->
</div>
<div class='next_pane'></div>
</div>
<div class='pane' id='pane_4' data-title="<h1>Pane 4</h1><p>This is pane 4's title</p></p>">
<div class='prev_pane'></div>
<div class="pane_content">
<!-- The content of pane 2 goes in here -->
</div>
<div class='next_pane'></div>
</div>
<div class='pane' id='pane_5' data-title="<h1>Pane 5</h1><p>This is pane 5's title</p></p>">
<div class='prev_pane'></div>
<div class="pane_content">
<!-- The content of pane 2 goes in here -->
</div>
<div class='next_pane'></div>
</div>
</div>
</body>
<script type="text/javascript">
$(window).load(function(){
$(document).windowPanes({
transition_speed: 1250,
easing:'easeOutQuint',
layout: 'vertical',
navSize:'24px'
})
})
</script>
</html>