Accordion
优质
小牛编辑
132浏览
2023-12-01
此布局允许将所有项目以堆栈方式(一个在另一个的顶部)放置在容器内。
语法 (Syntax)
以下是使用Accordion布局的简单语法。
layout: 'accordion'
例子 (Example)
以下是一个简单的示例,显示了Accordion布局的用法。
<!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>