jquery div 드래그 폭 예제 코드 구현

이 예 는 매우 간단 한 div 드래그 입 니 다.필요 한 친구 가 자신의 수요 에 따라 해당 하 는 코드 를 추가 할 수 있 습 니 다.벽돌 치기 환영
 
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html style="height:100%;">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>div width resize</title>
<!-- jquery-->
<script src="http://code.jquery.com/jquery-1.8.0.min.js"
type="text/javascript"></script>
<script type="text/javascript">
function bindResize(el)
{
//
var els = document.getElementById('menu').style;
// X Y
x = 0;
//
$(el).mousedown(function (e)
{
// ,
x = e.clientX - el.offsetWidth - $("#menu").width();
// setCapture
el.setCapture ? (
//
el.setCapture(),
//
el.onmousemove = function (ev)
{
mouseMove(ev || event);
},
el.onmouseup = mouseUp
) : (
//
$(document).bind("mousemove", mouseMove).bind("mouseup", mouseUp)
);
//
e.preventDefault();
});
//
function mouseMove(e)
{
// ...
els.width = e.clientX - x + 'px';
}
//
function mouseUp()
{
// releaseCapture
el.releaseCapture ? (
//
el.releaseCapture(),
//
el.onmousemove = el.onmouseup = null
) : (
//
$(document).unbind("mousemove", mouseMove).unbind("mouseup", mouseUp)
);
}
}
var divResize=function(){
var totalHeight=$("html").height();
console.log(totalHeight);
var topHeight=$("#top").height()
$("#menu").height(totalHeight-topHeight);
$("#rightbar").height(totalHeight-topHeight);
}
$(function() {
divResize();
$(window).resize(divResize);

bindResize(document.getElementById('rightbar'));
});
</script>
<style type="text/css">
.content {
width: 200px;
background: #f1f1f1;
text-align: center;
border-color: #CCCCCC;
border-style: solid;
border-width: 0 1px;
}
</style>
</head>
<body style="padding: 0; margin: 0;">
<%--
<table style="height: 100%">
<tr>
<td id="menu" class="content"></td>
<td id="rightbar"
style="width: 2px; background: #cccccc; cursor: e-resize;"></td>
</tr>
</table>
--%>
<div>
<div id="top" style="width: 100%; height: 80px;"></div>
<div style="float: left;" id="menu" class="content">
<span> div</span>
</div>
<div id="rightbar"
style="width: 2px; background: #cccccc; cursor: e-resize; float: left;"></div>
</div>
</body>
</html>

좋은 웹페이지 즐겨찾기