Ext.js - 手风琴布局
此布局允许将所有项目以堆叠方式(一个在另一个之上)放置在容器内。
语法
以下是使用手风琴布局的简单语法。
layout: '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>
上述程序将产生以下结果 −