jquery 拖動DIV

來源:互聯網
上載者:User

標籤:style   http   io   os   ar   java   sp   div   on   

<html>
<head>
<style type="text/css">
.show{
background:#7cd2f8;
width:300px;
height:180px;
text-align:center;
position:absolute;
z-index:1;
left:100px;
top:100px;
}
.show input{
width:100px;
}
</style>
<script type="text/javascript" src="jquery-1.4.2.min.js"></script>
<script type="text/javascript"><!--
$(document).ready(function()
{
$(".show").mousedown(function(e)//e滑鼠事件
{
$(this).css("cursor","move");//改變滑鼠指標的形狀

var offset = $(this).offset();//DIV在頁面的位置
var x = e.pageX - offset.left;//獲得滑鼠指標離DIV元素左邊界的距離
var y = e.pageY - offset.top;//獲得滑鼠指標離DIV元素上邊界的距離
$(document).bind("mousemove",function(ev)//綁定滑鼠的移動事件,因為游標在DIV元素外面也要有效果,所以要用doucment的事件,而不用DIV元素的事件
{
$(".show").stop();//加上這個之後

var _x = ev.pageX - x;//獲得X軸方向移動的值
var _y = ev.pageY - y;//獲得Y軸方向移動的值

$(".show").animate({left:_x+"px",top:_y+"px"},10);
});

});

$(document).mouseup(function()
{
$(".show").css("cursor","default");
$(this).unbind("mousemove");
})


})
// --></script>
</head>
<body>
<div class="show">
使用者名稱:<input type="text" name="username" /><br />
密&nbsp;&nbsp;&nbsp;碼:<input type="password" name="password" /><br />
<input type="button" value="提交" onclick="javascript:window.location.href=‘http://www.163.com‘;" />
</div>
</body>
</html>

jquery 拖動DIV

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.