12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <html>
- <head>
- <title></title>
- <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8" />
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="this is my page">
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
- <!--框架必需start-->
- <script type="text/javascript" src="/nwyj/scripts/qui/libs/js/main.js"></script>
- <script type="text/javascript" src="/nwyj/scripts/qui/libs/js/jquery.js"></script>
- <script type="text/javascript" src="/nwyj/scripts/qui/libs/js/language/cn.js"></script>
- <script type="text/javascript" src="/nwyj/scripts/qui/libs/js/framework.js"></script>
- <link href="/nwyj/scripts/qui/libs/css/import_basic.css" rel="stylesheet" type="text/css"/>
- <link rel="stylesheet" type="text/css" id="skin" prePath="/nwyj/scripts/qui/" scrollerY="false"/>
- <link rel="stylesheet" type="text/css" id="customSkin"/>
- <!--框架必需end-->
- <!-- 日期选择框start -->
- <script type="text/javascript" src="/nwyj/scripts/qui/libs/js/form/datePicker/WdatePicker.js"></script>
- <!-- 日期选择框end -->
- </head>
- <body>
- <div>
- <div>
- 自<input type="text" class="date" style="width:200px;" dateFmt="yyyy-MM-dd HH:mm:ss"/>至今停电影响用户情况
- </div>
- <div style="width:100%; height:50%" class="box2" panelTitle="供电损失及用户停电统计" startStatus="close" startState="open" statusText="收缩" afterStatusText="展开">
- <iframe width="100%" id="top_iframe" frameborder=”no” border=”0″ marginwidth=”0″ marginheight=”0″ scrolling=”no” allowtransparency=”yes” src="blackoutgrid.html">
- </iframe>
- </div>
- <div class="box2" panelTitle="全省复电情况" startStatus="close" startState="open" statusText="收缩" afterStatusText="展开"
- style="width:40%; height:50%;float:left">
- <iframe width="100%" id="left_iframe" frameborder=”no” border=”0″ marginwidth=”0″ marginheight=”0″
- scrolling=”no” allowtransparency=”yes” src="chart.html">
- </iframe>
- </div>
-
- <div class="box2" panelTitle="停电地市分布图" startStatus="close" startState="open" statusText="收缩" afterStatusText="展开"
- style="width:59%; height:50%;float:left">
- <iframe width="100%" id="right_iframe" frameborder=”no” border=”0″ marginwidth=”0″ marginheight=”0″
- scrolling=”no” allowtransparency=”yes” src="map.html">
- </iframe>
- </div>
- </div>
- </body>
- <script type="text/javascript">
- $(function(){
- var topheight=$(window).height()*0.4 ;
- var buttomheight=$(window).height()*0.85 ;
- $("#top_iframe").attr("height",topheight + "px") ;
- $("#left_iframe").attr("height",buttomheight + "px") ;
- $("#right_iframe").attr("height",buttomheight + "px") ;
- })
- </script>
- </html>
|