美文网首页
可拖拽div

可拖拽div

作者: 手劲很大 | 来源:发表于2019-08-14 23:38 被阅读0次

一个在移动端及PC端都可以使用的拖拽函数。

使用方法

需要先设置position属性,absolute relative fixed均可

#app{
  position: absolute;
}

传入需要被拖拽元素节点

new Drafting(document.querySelector('#app'))

原理

  • 假设在PC端上
  • 监听app的mousedown事件,取得此时的位置[x1,y1]
  • 监听mousemove事件,取得此时的位置[x2,y2]
  • 则两个位置之间的差值就为app需要设置的left及top值

注意事项

  1. app上监听mousedown 及 mouseup 事件
  2. document上监听mousemove事件
  3. 偏移的值需要用当前的位置减掉起始的位置再加上之前所设置的 left 或 top 的值

以下为详细代码

class Drafting{
  constructor(el){
    this.$el = el
    this.$move = false
    this.$position = []
    this.$type = null

    this.judge()
  }

  judge(){
    if('ontouchstart' in document.body){
      this.$type = 'phone'
      this.listen('touchstart','touchmove','touchend')
    }else{
      this.$type = 'pc'
      this.listen('mousedown','mousemove','mouseup')
    }
  }
  
  listen(x,y,z){
    this.$el.addEventListener(x,(e)=>{
      this.$move = true
      this.$type === 'phone'? this.$position = [e.targetTouches[0].clientX,e.targetTouches[0].clientY] : this.$position = [e.clientX,e.clientY]
    })
    document.addEventListener(y,(e)=>{
      if(!this.$move) return
      let x = null
      let y = null
      this.$type === 'phone'? x = e.targetTouches[0].clientX : x = e.clientX
      this.$type === 'phone'? y = e.targetTouches[0].clientY : y = e.clientY
      let gapX = `${x - this.$position[0] + parseInt(this.$el.style.left || 0)}`
      let gapY = `${y - this.$position[1] + parseInt(this.$el.style.top || 0)}`
      this.$el.style.left = `${gapX}px`
      this.$el.style.top = `${gapY}px`
      this.$position = [x,y]
    })
    this.$el.addEventListener(z,()=>{
      this.$move = false
    })
  }
}

new Drafting(document.querySelector('#app'))

相关文章

  • 可拖拽div

    一个在移动端及PC端都可以使用的拖拽函数。 使用方法 需要先设置position属性,absolute relat...

  • 可拖拽div

  • 可拖拽的div

  • 事件应用

    拖拽 拖拽原理 三大事件 -鼠标和Div的相对距离不变 把拖拽加到document上 如果拖得太快,会移出div,...

  • 事件应用

    拖拽 拖拽原理 三大事件 -鼠标和Div的相对距离不变 把拖拽加到document上 如果拖得太快,会移出div,...

  • div 拖拽

    /* 图标功能加载*/pageCommon.nav = function () {var posX;var pos...

  • 拖拽div的值到table

    Html 代码 jQeruyUI拖拽效果_拖拽div的值到table表格...

  • js 拖拽 DIV

  • JS拖拽div

  • JavaScrip--事件应用

    事件应用 拖拽 拖拽原理 三大事件 -鼠标和Div的相对距离不变 把拖拽加到document上 如果拖得太快,会移...

网友评论

      本文标题:可拖拽div

      本文链接:https://www.haomeiwen.com/subject/kutojctx.html