easyUI Layout自适应窗口大小

来源:互联网 发布:淘宝刷流量收藏平台 编辑:程序博客网 时间:2024/04/30 18:46
</pre><p>关于页面自适应效果</p><p><pre name="code" class="javascript">
//监听窗口大小变化window.onresize = function(){setTimeout(redraw,300);};//改变表格宽高//自动调整function redraw(){var win_width = $("#content").width();$('#content').layout('panel', 'west').panel('resize',{width:win_width/3});$('#content').layout('panel', 'center').panel('resize',{width:win_width/3});$('#content').layout('panel', 'east').panel('resize',{width:win_width/3});$('#content').layout('resize');}


1 0
原创粉丝点击