vue实现移动端拖动排序


Posted in Javascript onAugust 21, 2020

本文实例为大家分享了vue实现移动端拖动排序的具体代码,供大家参考,具体内容如下

效果

vue实现移动端拖动排序

代码:

<template>
 <div>
 <div class="mainDiv" id="columns">
 <div id="child"
  class="childDiv"
  v-for="(option,index) in options"
  :key="index"
 >
 {{option}}
 </div>

 <!-- <div id="test" class="test"
  @touchstart="down" @touchmove="move" @touchend="end"
 >什么都没有
 </div>-->
 </div>
 </div>
</template>
<script>
 export default {
 name: "touchMove",
 data() {
  return {
  options: ['选项1', '选项2', '选项3', '选项4'],
  columns: undefined,
  flags: false,
  position: {x: 0, y: 0},
  nx: '', ny: '', dx: '', dy: '', xPum: '', yPum: '',
  }
 },
 mounted() {
  this.columns = document.querySelectorAll('#child');
  let num = 0;
  for (let i of this.columns) {
  i.style.top = (i.offsetHeight * num) + 'px';
  i.addEventListener('touchstart', this.down);
  i.addEventListener('touchmove', this.move);
  i.addEventListener('touchend', this.end);
  num ++;
  }
 },
 methods: {
  down(e) {
  e.preventDefault();
  this.flags = true;
  var touch;
  if (e.touches) {
   touch = e.touches[0];
  } else {
   touch = e;
  }
  /*touch.clientX clientY 鼠标点击的位置与视图窗口的距离
  * e.target.offsetLeft offsetTop 鼠标点击的div与父元
  * 素的边框距离,父元素必须为定位样式,不然认为父元素为body
  * */
  this.position.x = touch.clientX;
  this.position.y = touch.clientY;
  this.dx = e.target.offsetLeft;
  this.dy = e.target.offsetTop;
  },
  move(e) {
  if (this.flags) {
   var touch;
   if (e.touches) {
   touch = e.touches[0];
   } else {
   touch = e;
   }
   this.nx = touch.clientX - this.position.x;
   this.ny = touch.clientY - this.position.y;//移动的距离
   this.xPum = this.dx + this.nx;
   this.yPum = this.dy + this.ny;
   e.target.style.left = this.xPum + 'px';
   e.target.style.top = this.yPum + 'px';
  }
  },
  end(e) {
  //处理边界问题
  let right= e.target.offsetLeft + e.target.offsetWidth;
  let bottom = e.target.offsetTop + e.target.offsetHeight;
  if(e.target.offsetLeft <= 0 || right >= e.target.offsetParent.offsetWidth){
   e.target.style.left = 0 + 'px';
  }
  if(e.target.offsetTop <= 0 || bottom >= e.target.offsetParent.offsetHeight){
   e.target.style.top = 0 + 'px';
  }
  this.dataTransfer(e);
  this.flags = false;
  },
  dataTransfer(e){
  let eleTop = e.target.offsetTop + Math.round(e.target.offsetHeight / 2);//找到当前元素的中间位置
  let arr = Array.from(this.columns);//将nodelist转为array
  let index = arr.indexOf(e.target);//找到当前元素下标
  for(let i in arr){
   //如果当前元素进入另一个元素的位置,将他们的值互换,位置还原
   if(eleTop > arr[i].offsetTop && eleTop < (arr[i].offsetTop + arr[i].offsetHeight)){
   //值互换,位置还原(保证数组的序列数据不变)
   let temp = arr[index].innerText;
   arr[index].innerText = arr[i].innerText;
   arr[i].innerText = temp;
   }
  }
  let num = 0;
  for (let i of this.columns) {
   i.style.top = (i.offsetHeight * num) + 'px';
   num ++;
  }
  }
 }
 }
</script>
<style scoped>
 .mainDiv {
 position: absolute;
 height: 500px;
 width: 100%;
 border: 3px solid red;
 border-radius: 10px;
 margin: 10px;
 }

 .mainDiv > .childDiv {
 position: absolute;
 height: 50px;
 width: 90%;
 background-color: blue;
 border: 2px solid;
 border-radius: 10px;
 margin: 1px auto;
 padding: 10px;
 text-align: center;
 }


 .test {
 position: relative;
 height: 50px;
 width: auto;
 background-color: red;
 border: 2px solid;
 border-radius: 3px;
 margin: 1px 0 1px;
 padding: 10px;
 text-align: center;
 }

</style>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
单击某一段文字改写文本颜色
Jun 06 Javascript
javascript中AJAX用法实例分析
Jan 30 Javascript
Lab.js初次使用笔记
Feb 28 Javascript
JavaScript使用setTimeout实现延迟弹出警告框的方法
Apr 07 Javascript
javascript实现瀑布流加载图片原理
Feb 02 Javascript
vue多级多选菜单组件开发
Sep 08 Javascript
jQuery ajax 当async为false时解决同步操作失败的问题
Nov 18 Javascript
jquery插件bootstrapValidator表单验证详解
Dec 15 Javascript
jQuery实现手机号正则验证输入及自动填充空格功能
Jan 02 jQuery
使用Node.js实现一个多人游戏服务器引擎
Mar 13 Javascript
微信小程序开发实现的选项卡(窗口顶部/底部TabBar)页面切换功能图文详解
May 14 Javascript
Ant-design-vue Table组件customRow属性的使用说明
Oct 28 Javascript
微信小程序实现聊天室
Aug 21 #Javascript
vue实现折线图 可按时间查询
Aug 21 #Javascript
Vue按时间段查询数据组件使用详解
Aug 21 #Javascript
js绘制一条直线并旋转45度
Aug 21 #Javascript
AJAX XMLHttpRequest对象创建使用详解
Aug 20 #Javascript
基于vue.js仿淘宝收货地址并设置默认地址的案例分析
Aug 20 #Javascript
微信小程序以7天为周期连续签到7天功能效果的示例代码
Aug 20 #Javascript
You might like
人大复印资料处理程序_补充篇
2006/10/09 PHP
PHP中foreach()用法汇总
2015/07/02 PHP
PHP回调函数与匿名函数实例详解
2017/08/16 PHP
深入学习微信网址链接解封的防封原理visit_type
2019/08/15 PHP
Laravel框架中集成MongoDB和使用详解
2019/10/17 PHP
身份证号码前六位所代表的省,市,区, 以及地区编码下载
2007/04/12 Javascript
JavaScript监测ActiveX控件是否已经安装过的代码
2008/09/02 Javascript
js 表格隔行颜色
2009/12/02 Javascript
JS 面向对象之神奇的prototype
2011/02/26 Javascript
从数组中随机取x条不重复数据的JS代码
2013/12/24 Javascript
javascript中cookie对象用法实例分析
2015/01/30 Javascript
node.js实现爬虫教程
2020/08/25 Javascript
[原创]JavaScript语法高亮插件highlight.js用法详解【附highlight.js本站下载】
2016/11/01 Javascript
解决vue2.x中数据渲染以及vuex缓存的问题
2017/07/13 Javascript
javascript  删除select中的所有option的实例
2017/09/17 Javascript
vue.js中ref及$refs的使用方法解析
2019/10/08 Javascript
Ant Design的Table组件去除
2020/10/24 Javascript
node.js爬虫框架node-crawler初体验
2020/10/29 Javascript
Python实现的监测服务器硬盘使用率脚本分享
2014/11/07 Python
jupyter安装小结
2016/03/13 Python
python将unicode转为str的方法
2017/06/21 Python
Django Rest framework认证组件详细用法
2019/07/25 Python
python栈的基本定义与使用方法示例【初始化、赋值、入栈、出栈等】
2019/10/24 Python
python 初始化一个定长的数组实例
2019/12/02 Python
pyecharts绘制中国2020肺炎疫情地图的实例代码
2020/02/12 Python
python实现录屏功能(亲测好用)
2020/03/02 Python
python批量替换文件名中的共同字符实例
2020/03/05 Python
在python中对于bool布尔值的取反操作
2020/12/11 Python
德国家具在线:Fashion For Home
2017/03/11 全球购物
匡威意大利官方商店 :Converse意大利
2018/11/27 全球购物
高中毕业自我鉴定
2013/12/22 职场文书
个人贷款承诺书
2014/03/28 职场文书
企业形象策划方案
2014/05/29 职场文书
同志主要表现材料
2014/08/21 职场文书
上课随便讲话检讨书
2014/09/12 职场文书
2014办公室年度工作总结
2014/12/09 职场文书