jQuery实现拖动效果的实例代码
程序员文章站
2022-05-26 10:57:34
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实现拖动效果的实例代码,希望对大家有所帮助
上一篇: .net msmq消息队列实例详解