Easyui入门视频教程 第04集---Easyui布局

目录

目录

-----------------------

我们继续讲布局

full 全屏 布局
<body class="easyui-layout">
        <div data-options="region:'north',border:false" style="height:60px;background:#B3DFDA;padding:10px">north region</div>
        <div data-options="region:'west',split:true,title:'West'" style="150px;padding:10px;">west content</div>
        <div data-options="region:'east',split:true,collapsed:true,title:'East'" style="100px;padding:10px;">east region</div>
        <div data-options="region:'south',border:false" style="height:50px;background:#A9FACD;padding:10px;">south region</div>
        <div data-options="region:'center',title:'Center'"></div>
</body>

整个body 作为一个布局容器

嵌套布局

        <div class="easyui-layout" style="700px;height:350px;">
                <div data-options="region:'north'" style="height:50px"></div>
                <div data-options="region:'south',split:true" style="height:50px;"></div>
                <div data-options="region:'east',split:true" title="East" style="180px;"></div>
                <div data-options="region:'west',split:true" title="West" style="100px;"></div>
                <div data-options="region:'center',iconCls:'icon-ok'" title="Center">
                        <div class="easyui-layout" data-options="fit:true">
                                <div data-options="region:'north',split:true,border:false" style="height:50px"></div>
                                <div data-options="region:'west',split:true,border:false" style="100px"></div>
                                <div data-options="region:'center',border:false"></div>
                        </div>
                </div>
        </div>

这个东西 就是 收缩
collapsed:true

视频下载地址

http://pan.baidu.com/s/1sjEpVTr

源码

http://www.bamn.cn/thread-3982-1-1.html

原文地址:https://www.cnblogs.com/maijin/p/3486869.html