ligerPortal
主要功能:
- 允许以多行、多列的方式自由得组合出Portal(基于Panel)
- 支持各种API方法:新增或删除Panel、加载远程数据等
- 支持加载远程数据加载Portal
- 支持记忆模式
示例
1 $("#portalMain").ligerPortal({ 2 draggable : true, 3 columns: [{ 4 width: 400, 5 panels: [{ 6 title: '行1-列1-模块1', 7 width: '100%', 8 height: 200, 9 url: 'frameContent.htm', 10 showClose: true 11 }, 12 { 13 title: '行1-列1-模块2', 14 width: '100%', 15 height: 200, 16 content: '内容。。。' 17 } 18 ] 19 }, { 20 width: 400, 21 panels: [{ 22 title: '行1-列3-模块1', 23 width: '100%', 24 height: 200, 25 content: '内容。。。' 26 } 27 ] 28 }] 29 });
截图