drag.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. class Drap{
  2. static zIndex = 1;
  3. constructor(el,option={}){
  4. this.el = el;
  5. this.x=0;
  6. this.y=0;
  7. this.option = option;
  8. this.init();
  9. }
  10. init(){
  11. this.setEleStyle(this.option||{});
  12. this.el.onmousedown =(e)=>{
  13. this.onMouseDown(e)
  14. this.el.setCapture&&this.el.setCapture() //全局捕获
  15. return false
  16. }
  17. }
  18. //样式设置
  19. setEleStyle(option){
  20. for (const key in option) {
  21. this.el.style[key] = option[key]
  22. }
  23. }
  24. //按下ele
  25. onMouseDown(e){
  26. let zIndex = getComputedStyle(this.el).getPropertyValue('z-index');
  27. zIndex=isNaN(zIndex)?1:zIndex
  28. Drap.zIndex =Drap.zIndex>zIndex?Number(Drap.zIndex)+1:Number(zIndex)+1
  29. this.setEleStyle({"zIndex":Drap.zIndex,position:'fixed','cursor': 'move'})
  30. this.x = e.clientX-this.el.offsetLeft;
  31. this.y= e.clientY-this.el.offsetTop;
  32. document.onmousemove=(e)=>this.onMouseMove(e);
  33. document.onmouseup = (e)=>this.onMouseUp(e)
  34. }
  35. //移动move
  36. onMouseMove(e){
  37. let X = e.clientX-this.x
  38. let Y = e.clientY-this.y;
  39. if(X<10-this.el.offsetWidth){
  40. X=10-this.el.offsetWidth
  41. }else if(X>document.documentElement.clientWidth-10){
  42. X =document.documentElement.clientWidth-10
  43. }
  44. if(Y<10-this.el.clientHeight){
  45. Y=10-this.el.clientHeight
  46. }else if(Y>document.documentElement.clientHeight-10){
  47. Y =document.documentElement.clientHeight-10
  48. }
  49. this.el.style.left = X+'px'
  50. this.el.style.top = Y+'px'
  51. }
  52. //释放
  53. onMouseUp(e){
  54. document.onmousemove = null
  55. document.onmouseup =null
  56. this.setEleStyle({'cursor': 'pointer'})
  57. this.el.setCapture&&this.el.setCapture() //释放全局捕获
  58. }
  59. }
  60. export const drag = {
  61. mounted(el, binding) {
  62. new Drap(el,binding.value||{})
  63. }
  64. }