首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

浏览器窗口大小发生变化时,让弹出的窗体自动居间

2012-10-24 
浏览器窗口大小发生变化时,让弹出的窗体自动居中//浏览器窗口大小发生变化时,让弹出的窗体自动居中Ext.Eve

浏览器窗口大小发生变化时,让弹出的窗体自动居中

//浏览器窗口大小发生变化时,让弹出的窗体自动居中
Ext.EventManager.onWindowResize(function(){
??? if(addServerInfoWindow){
??? ??? ?addServerInfoWindow.setHeight(document.body.clientHeight/1.5);
??? ??? addServerInfoWindow.setWidth(document.body.clientWidth/3);
??? ??? addServerInfoWindow.center();
??? }
???
??? if(updateServerInfoWindow){
??? ???? updateServerInfoWindow.setHeight(document.body.clientHeight/1.5);
??? ??? updateServerInfoWindow.setWidth(document.body.clientWidth/3);
??? ??? updateServerInfoWindow.center();
??? }
});

热点排行