Skip to content

Commit 9c9192e

Browse files
committed
* panel visual test html
1 parent 1df7817 commit 9c9192e

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

tests/visual/panel/panel.html

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Panel Visual Test : Default</title>
6+
<link rel="stylesheet" href="../visual.css" type="text/css" />
7+
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css" type="text/css">
8+
<script type="text/javascript" src="../../../jquery-1.4.2.js"></script>
9+
<script type="text/javascript" src="../../../ui/jquery.ui.core.js"></script>
10+
<script type="text/javascript" src="../../../ui/jquery.ui.widget.js"></script>
11+
<script type="text/javascript" src="../../../ui/jquery.ui.panel.js"></script>
12+
<script type="text/javascript">
13+
$(function() {
14+
$("#panel1").panel({ });
15+
$("#panel2").panel({collapseType: 'left'});
16+
$("#panel3").panel({collapseType: 'right'});
17+
})
18+
</script>
19+
</head>
20+
<body>
21+
22+
<div id="panel1">
23+
<h3><a href="#">Panel Header</a></h3>
24+
<div>
25+
Panel Content
26+
</div>
27+
</div>
28+
29+
<br /><br />
30+
31+
<div id="panel2">
32+
<h3><a href="#">Left Sliding Panel Header</a></h3>
33+
<div>
34+
Left Sliding Panel Content
35+
</div>
36+
</div>
37+
38+
<br /><br />
39+
40+
<div id="panel3">
41+
<h3><a href="#">Right Sliding Panel Header</a></h3>
42+
<div>
43+
Right Sliding Panel Content
44+
</div>
45+
</div>
46+
47+
<br /><br />
48+
49+
</body>
50+
</html>

0 commit comments

Comments
 (0)