|
注:本文代碼皆基于jquery實現。
按照普通的方法寫一個layout,一般是用一個table來實現,用中間的td拖動來控制左右兩個td的大小,這個問題簡單,很快就搞定。代碼如下:
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
5 <title>Untitled Document</title>
6 <style type="text/css">
7 *{margin:0px;padding:0px}
8 html{overflow:hidden}
9 #sideBar{width:200px;height:100%;overflow:auto}
10 #toggleBar,.div{
11 width:7px;height:100%;
12 overflow:hidden;background:#eee;
13 cursor:e-resize;border-left:1px solid #ccc;border-right:1px solid #ccc;
14 }
15 td{display:block;overflow:auto;word-break:break-all;}
16 </style>
17 <script type="text/Javascript" src="../Common/jquery.gif"></script>
18 <script type="text/Javascript">
19 $(document).ready(function(){
20 //及時調整頁面內容的高度
21 setInterval(function(){
22 var winH=(document.documentElement||document.body).clientHeight;
23 $("#tbl,#sideBar,#toggleBar,#main").css("height",winH);
24 $("td").each(function(){$(this).html()||$(this).html(" ")});
25 },100)
26 }
27 );
28
29 var begin_x;
30 var drag_flag = false;
31 document.onmousemove = mouseDrag
32 document.onmouseup = mouseDragEnd
33 //半透明拖動條
34 var alphaDiv="<div class='div' id='alphaDiv' style='position:absolute;height:2000px;top:0;z-index:10001;filter:alpha(opacity=50);opacity:0.5;left:200px'> </div>";
35 function setDrag(){
36 drag_flag=true;
37 begin_x=event.x;
38 //添加半透明拖動條
39 $(alphaDiv).css("left",$("#toggleBar")[0].offsetLeft).appendTo("body");
40 }
41
42 //拖動時執行的函數
43 function mouseDrag(){
44 if(drag_flag==true){
45 if (window.event.button==1){
46 var now_x=event.x;
47 var value=parseInt($("#alphaDiv")[0].style.left)+now_x-begin_x;
48 $("#alphaDiv")[0].style.left=value+"px";
49 begin_x=now_x;
50 }
51 $("body").css("cursor","e-resize"); //設定光標類型
52 }else{
53 try{
54 $("#sideBar")[0].style.pixelWidth=$("#alphaDiv")[0].style.left;
55 $("#alphaDiv").remove();
56 }catch(e){}
57 }
58 }
59
60 function mouseDragEnd(){
61 //設置拖動條的位置
62 if(drag_flag==true){
63 //設定拖動條的位置(設定左側的寬度)
64 $("#sideBar")[0].style.pixelWidth=parseInt($("#alphaDiv")[0].style.left);
65 $("#alphaDiv").remove(); //刪除半透明拖動條
66 $("body").css("cursor","normal"); //恢復光標類型
67 }
68 drag_flag=false;
69 }
70 </script>
71 </head>
72 <body>
73 <table id="tbl" border="0" bordercollASPe="collapse" cellpadding="2" cellspacing="0" width="100%" height="100%">
74 <tr>
75 <td width="1"><div id="sideBar" style="width:200px;"><div style="height:1200px">asdfasdf</div></div>
76 </td>
77 <td width="1" onmousedown="setDrag()" id="toggleBar"></td>
78 <td id="main">
79 right Panel
80 </td>
81 </tr>
82 </table>
83 </body>
84 </html>演示地址:http://www.ajaxbbs.NET/test/layout/JqSplit/noiframe.htm
上面的這種寫法也是大多數layout的寫法,著名框架dojo好像也是這么實現的,其他的沒試。
但現在的情況仍然不能滿足我們的需求,我們需要左側或右側是ifame,通過iframe調用相關的頁面,在前面的代碼中將右側改為iframe。
演示地址:http://www.ajaxbbs.NET/test/layout/JqSplit/iframeRight.htm
這時我們就發現問題了,只能向左邊拖動,但不能像右邊拖動,這是為什們呢?
經過檢查,發現原來當鼠標移動到iframe上就無法捕獲鼠標的位置了,event對象也不存在。得不到鼠標的位置我們的拖動當然會出現問題了。
這個問題著實讓我郁悶了許久,然后測試其他的一些layout(對iframe進行了處理)發現凡是使用iframe的都有一個缺陷,當鼠標拖動速度很快的時候,拉動條速度跟不上(當然這些并沒有那個模擬的半透明的拖動條,直接拖動真實的拖動條的),感覺就是很不流暢很不同步。
我們看一下直接拖動真是滾動條的情況
演示地址:http://www.ajaxbbs.NET/test/layout/JqSplit/iframeRightNoAlpha.htm
我們慢速度拖動還是可以向右移動的,但一但速度稍快便不能拖動了。
對于這個問題始終沒有想到好的解決辦法,就在我悲傷的即將放棄時,看到前幾天寫的一個模擬彈出框,因為當時測試彈出框應該要遮住包括iframe在內的select。所以頁面中使用了ifame。突然發現一個索引很高的層能夠遮住iframe,突然間就有了靈感,馬上實驗。
思路如下:拖動拉條時在頁面添加一個索引很大的層(如10000),將其透明度設為0(完全透明),這樣鼠標就不會移動到iframe中,但iframe仍然存在可以看到。當拖動結束(onmouseup)時去掉這個層即可,這樣就實現了比較完美的拖動。
演示地址:
http://www.ajaxbbs.NET/test/layout/JqSplit/demo.htm
我們看一下完整的代碼:
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml">
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
5 <title>Untitled Document</title>
6 <style type="text/css">
7 *{margin:0px;padding:0px}
8 html{overflow:hidden}
9 #sideBar{width:200px;height:100%;overflow:auto}
10 #toggleBar,.div{
11 width:7px;height:100%;
12 overflow:hidden;background:#eee;
13 cursor:e-resize;border-left:1px solid #ccc;border-right:1px solid #ccc;
14 }
15 td{display:block;overflow:auto;word-break:break-all;}
16 </style>
17 <script type="text/Javascript" src="../Common/jquery.js"></script>
18 <script type="text/Javascript">
19 $(document).ready(function(){
20 //及時調整頁面內容的高度
21 setInterval(function(){
22 var winH=(document.documentElement||document.body).clientHeight;
23 $("#tbl,#sideBar,#toggleBar,#main").css("height",winH);
24 $("td").each(function(){$(this).html()||$(this).html(" ")});
25 },100)
26 }
27 );
28
29 var begin_x;
30 var drag_flag = false;
31 document.onmousemove = mouseDrag
32 document.onmouseup = mouseDragEnd
33 //半透明的拖動條(模擬)
34 var alphaDiv="<div class='div' id='alphaDiv' style='position:absolute;height:2000px;top:0;z-index:10001;filter:alpha(opacity=50);opacity:0.5;left:200px'> </div>";
35 function setDrag(){
36 drag_flag=true;
37 begin_x=event.x;
38 //添加蒙板
39 createMask();
40 //添加半透明拖動條
41 $(alphaDiv).css("left",$("#toggleBar")[0].offsetLeft).appendTo("body");
42 }
43
44 //關鍵部分
45 function createMask(){
46 //創建背景
47 var rootEl=document.documentElement||document.body;
48 var docHeight=((rootEl.clientHeight>rootEl.scrollHeight)?rootEl.clientHeight:rootEl.scrollHeight)+"px";
49 var docWidth=((rootEl.clientWidth>rootEl.scrollWidth)?rootEl.clientWidth:rootEl.scrollWidth)+"px";
50 var shieldStyle="position:absolute;top:0px;left:0px;width:"+docWidth+";height:"+docHeight+";background:#000;z-index:10000;filter:alpha(opacity=0);opacity:0";
51 $("<div id='shield' style=/""+shieldStyle+"/"></div>").appendTo("body");
52 }
53 //拖動時執行的函數
54 function mouseDrag(){
55 if(drag_flag==true){
56 if (window.event.button==1){
57 var now_x=event.x;
58 var value=parseInt($("#alphaDiv")[0].style.left)+now_x-begin_x;
59 $("#alphaDiv")[0].style.left=value+"px";
60 begin_x=now_x;
61 }
62 $("body").css("cursor","e-resize"); //設定光標類型
63 }else{
64 try{
65 $("#shield").remove();
66 $("#sideBar")[0].style.pixelWidth=$("#alphaDiv")[0].style.left;
67 $("#alphaDiv").remove();
68 }catch(e){}
69 }
70 }
71
72 function mouseDragEnd(){
73 //設置拖動條的位置
74 if(drag_flag==true){
75 //設定拖動條的位置(設定左側的寬度)
76 $("#sideBar")[0].style.pixelWidth=parseInt($("#alphaDiv")[0].style.left);
77 $("#shield").remove(); //刪除蒙板
78 $("#alphaDiv").remove(); //刪除半透明拖動條
79 $("body").css("cursor","normal"); //恢復光標類型
80 }
81 drag_flag=false;
82 }
83 </script>
84 </head>
85 <body>
86 <table id="tbl" border="0" bordercollASPe="collapse" cellpadding="2" cellspacing="0" width="100%" height="100%">
87 <tr>
88 <td width="1"><div id="sideBar" style="width:200px;"><div style="height:1200px">asdfasdf</div></div>
89 </td>
90 <td width="1" onmousedown="setDrag()" id="toggleBar"></td>
91 <td id="main">
92 <iframe src="test.htm" id="frmMain" width="100%" height="100%"></iframe>
93 </td>
94 </tr>
95 </table>
96 </body>
97 </html>
算是自己的一點發現,一點心得吧,不知對大家有沒有用處,只管拿出來獻丑了!(首發于藍色經典)
JavaScript技術:寫了一個layout,拖動條連貫,內容區可為iframe,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。