首页 > 语言 > JavaScript > 正文

JavaScript实现的简单拖拽效果

2024-05-06 16:21:06
字体:
来源:转载
供稿:网友

这篇文章主要介绍了JavaScript实现的简单拖拽效果,涉及javascript针对鼠标事件与页面样式的操作技巧,需要的朋友可以参考下

本文实例讲述了JavaScript实现的简单拖拽效果。分享给大家供大家参考。具体实现方法如下:

 

 
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. <head> 
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
  6. <title>javascript拖拽</title> 
  7. <style> 
  8. .test{ 
  9. text-align:center; 
  10. width:300px; 
  11. height:30px; 
  12. line-height:30px; 
  13. background:#f60; 
  14. position:absolute; 
  15. .test:hover{ 
  16. cursor:move; 
  17. </style> 
  18. </head> 
  19. <body> 
  20. <script src="jquery-1.6.2.min.js"></script> 
  21. <div class="test">jb51拖拽测试</div> 
  22. <br/><br/> 
  23. <h1>如果无效请刷新下页面..</h1> 
  24. <script> 
  25. ;$(function(){ 
  26. var isMove=false
  27. $(".test").mousedown(function(){isMove=true;}).mouseup(function(){isMove=false;}); 
  28. $(document).mousemove(function(e){ 
  29. if(!isMove){return;}; 
  30. var X=e.clientX-parseInt($(".test").width()/2); 
  31. var Y=e.clientY-parseInt($(".test").height()/2); 
  32. $(".test").css({"left":X,"top":Y,"cursor":"move"}); 
  33. }); 
  34. }); 
  35. </script> 
  36. </body> 
  37. </html> 

希望本文所述对大家的javascript程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选