-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlayout-accordion.html
More file actions
34 lines (34 loc) · 1.14 KB
/
layout-accordion.html
File metadata and controls
34 lines (34 loc) · 1.14 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
<!DOCTYPE html>
<html>
<head>
<link href="https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/classic/theme-classic/resources/theme-classic-all.css" rel="stylesheet" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/ext-all.js"></script>
<script type="text/javascript">
Ext.onReady(function() {
Ext.create('Ext.container.Container', {
renderTo : Ext.getBody(),
layout : 'accordion' , // 手风琴:这种布局允许将所有项目以堆叠方式(一个在另一个之上)放在容器内。
width : 600,
items : [{
title : 'Panel 1',
html : 'Panel 1 html content'
},{
title : 'Panel 2',
html : 'Panel 2 html content'
},{
title : 'Panel 3',
html : 'Panel 3 html content'
},{
title : 'Panel 4',
html : 'Panel 4 html content'
},{
title : 'Panel 5',
html : 'Panel 5 html content'
}]
});
});
</script>
</head>
<body>
</body>
</html>