教程集 www.jiaochengji.com
教程集 >  jQuery  >  jquery 教程  >  正文 jquery div拖动效果示例代码

jquery div拖动效果示例代码

发布时间:2014-05-23   编辑:jiaochengji.com
div拖动效果想必大家都有见到过吧,实现的方法也是有很多的,下面为大家将介绍使用jquery是如何实现的,感兴趣的朋友不要错过
复制代码 代码如下:

<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!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=utf-8" />
<title>拖动DIV</title>
<style type="text/css">
.show{
background:#7cd2f8;
width:100px;
height:100px;
text-align:center;
position:absolute;
z-index:1;
left:100px;
top:100px;
}

</style>
<script type="text/javascript" src="../Script/jquery-1.7.2.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">
jquery实现DIV层拖动
</div>
</body>
</html>

您可能感兴趣的文章:
jquery div拖拽效果(兼容浏览器)
jQuery 版元素拖拽原型代码
jquery实现简单的拖拽效果实例兼容所有主流浏览器(优化篇)
jQuery EasyDrag实现DIV拖动
HTML5中如何实现图片的拖放
如何使用jQuery Draggable和Droppable实现拖拽功能
jquery实现鼠标拖动图片效果示例代码
让元素在网页中可拖动示例代码
基于jquery的一行代码轻松实现拖动效果
jquery简单的拖动效果实现原理及示例

关键词: jquery  div拖动   
[关闭]
~ ~