欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

jQuery实现拖动效果的实例代码

程序员文章站 2023-02-19 16:46:17
jquery实现拖动效果的实例代码,具体代码如下所示: &...

jquery实现拖动效果的实例代码,具体代码如下所示:

<!doctype html>
 <html>
<head>
<style>
 div{ width:100px; height:100px; background:red; position:absolute;}
 </style>
 <script type="text/javascript" src="js/jquery-1.11.3.js"></script>
 <script>
 $(function(){
var disx = 0;
var disy = 0;
$('div').mousedown(function(ev){
disx = ev.pagex - $(this).offset().left;//获取鼠标到元素的left,top位置
disy = ev.pagey - $(this).offset().top;
$(document).mousemove(function(ev){
$('div').css('left',ev.pagex - disx);//获取移动后鼠标的位置,并重新赋值给元素
$('div').css('top',ev.pagey - disy);
});
$(document).mouseup(function(){
$(document).off();
});
return false;
});
 });
 </script>
 </head>
 <body>
 <div></div>
 </body>
 </html> 

以上所述是小编给大家介绍的jquery实现拖动效果的实例代码,希望对大家有所帮助