|
注:本文代碼皆基于jquery實現。
按照普通的方法寫一個layout,一般是用一個table來實現,用中間的td拖動來控制左右兩個td的大小,這個問題簡單,很快就搞定。代碼如下:
QUOTE:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Untitled Document</title>
<style type="text/css">
*{margin:0px;padding:0px}
html{overflow:hidden}
#sideBar{width:200px;height:100%;overflow:auto}
#toggleBar,.div{
width:7px;height:100%;
overflow:hidden;background:#eee;
cursor:e-resize;border-left:1px solid #ccc;border-right:1px solid #ccc;
}
td{display:block;overflow:auto;word-break:break-all;}
</style>
<script type="text/Javascript" src="../Common/jquery.gif"></script>
<script type="text/Javascript">
$(document).ready(function(){
//及時調整頁面內容的高度
setInterval(function(){
var winH=(document.documentElement||document.body).clientHeight;
$("#tbl,#sideBar,#toggleBar,#main").css("height",winH);
$("td").each(function(){$(this).html()||$(this).html(" ")});
},100)
}
);
var begin_x;
var drag_flag = false;
document.onmousemove = mouseDrag
document.onmouseup = mouseDragEnd
//半透明拖動條
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>";
function setDrag(){
drag_flag=true;
begin_x=event.x;
//添加半透明拖動條
$(alphaDiv).css("left",$("#toggleBar")[0].offsetLeft).appendTo("body");
}
//拖動時執行的函數
function mouseDrag(){
if(drag_flag==true){
if (window.event.button==1){
var now_x=event.x;
var value=parseInt($("#alphaDiv")[0].style.left)+now_x-begin_x;
$("#alphaDiv")[0].style.left=value+"px";
begin_x=now_x;
}
$("body").css("cursor","e-resize"); //設定光標類型
}else{
try{
$("#sideBar")[0].style.pixelWidth=$("#alphaDiv")[0].style.left;
$("#alphaDiv").remove();
}catch(e){}
}
}
function mouseDragEnd(){
//設置拖動條的位置
if(drag_flag==true){
//設定拖動條的位置(設定左側的寬度)
$("#sideBar")[0].style.pixelWidth=parseInt($("#alphaDiv")[0].style.left);
$("#alphaDiv").remove(); //刪除半透明拖動條
$("body").css("cursor","normal"); //恢復光標類型
}
drag_flag=false;
}
</script>
</head>
<body>
<table id="tbl" border="0" bordercollASPe="collapse" cellpadding="2" cellspacing="0" width="100%" height="100%">
<tr>
<td width="1"><div id="sideBar" style="width:200px;"><div style="height:1200px">asdfasdf</div></div>
</td>
<td width="1" onmousedown="setDrag()" id="toggleBar"></td>
<td id="main">
right Panel
</td>
</tr>
</table>
</body>
</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我們看一下完整的代碼:
QUOTE:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Untitled Document</title>
<style type="text/css">
*{margin:0px;padding:0px}
html{overflow:hidden}
#sideBar{width:200px;height:100%;overflow:auto}
#toggleBar,.div{
width:7px;height:100%;
overflow:hidden;background:#eee;
cursor:e-resize;border-left:1px solid #ccc;border-right:1px solid #ccc;
}
td{display:block;overflow:auto;word-break:break-all;}
</style>
<script type="text/Javascript" src="../Common/jquery.js"></script>
<script type="text/Javascript">
$(document).ready(function(){
//及時調整頁面內容的高度
setInterval(function(){
var winH=(document.documentElement||document.body).clientHeight;
$("#tbl,#sideBar,#toggleBar,#main").css("height",winH);
$("td").each(function(){$(this).html()||$(this).html(" ")});
},100)
}
);
var begin_x;
var drag_flag = false;
document.onmousemove = mouseDrag
document.onmouseup = mouseDragEnd
//半透明的拖動條(模擬)
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>";
function setDrag(){
drag_flag=true;
begin_x=event.x;
//添加蒙板
createMask();
//添加半透明拖動條
$(alphaDiv).css("left",$("#toggleBar")[0].offsetLeft).appendTo("body");
}
//關鍵部分
function createMask(){
//創建背景
var rootEl=document.documentElement||document.body;
var docHeight=((rootEl.clientHeight>rootEl.scrollHeight)?rootEl.clientHeight:rootEl.scrollHeight)+"px";
var docWidth=((rootEl.clientWidth>rootEl.scrollWidth)?rootEl.clientWidth:rootEl.scrollWidth)+"px";
var shieldStyle="position:absolute;top:0px;left:0px;width:"+docWidth+";height:"+docHeight+";background:#000;z-index:10000;filter:alpha(opacity=0);opacity:0";
$("<div id='shield' style=/""+shieldStyle+"/"></div>").appendTo("body");
}
//拖動時執行的函數
function mouseDrag(){
if(drag_flag==true){
if (window.event.button==1){
var now_x=event.x;
var value=parseInt($("#alphaDiv")[0].style.left)+now_x-begin_x;
$("#alphaDiv")[0].style.left=value+"px";
begin_x=now_x;
}
$("body").css("cursor","e-resize"); //設定光標類型
}else{
try{
$("#shield").remove();
$("#sideBar")[0].style.pixelWidth=$("#alphaDiv")[0].style.left;
$("#alphaDiv").remove();
}catch(e){}
}
}
function mouseDragEnd(){
//設置拖動條的位置
if(drag_flag==true){
//設定拖動條的位置(設定左側的寬度)
$("#sideBar")[0].style.pixelWidth=parseInt($("#alphaDiv")[0].style.left);
$("#shield").remove(); //刪除蒙板
$("#alphaDiv").remove(); //刪除半透明拖動條
$("body").css("cursor","normal"); //恢復光標類型
}
drag_flag=false;
}
</script>
</head>
<body>
<table id="tbl" border="0" bordercollASPe="collapse" cellpadding="2" cellspacing="0" width="100%" height="100%">
<tr>
<td width="1"><div id="sideBar" style="width:200px;"><div style="height:1200px">asdfasdf</div></div>
</td>
<td width="1" onmousedown="setDrag()" id="toggleBar"></td>
<td id="main">
<iframe src="test.htm" id="frmMain" width="100%" height="100%"></iframe>
</td>
</tr>
</table>
</body>
</html>
自己的一點發現,一點心得,不知對大家有沒有用處,只管拿出來獻丑了!
JavaScript技術:一個剛完成的layout(拖動流暢,不受iframe影響),轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。