vue实现拖拽小图标

vue实现拖拽小图标

如何给vue项目里面写拖拽悬浮小图标呢,供大家参考,具体内容如下

首先

1、html文件 一定要给父盒子一个ID

<div       class="xuanfu"       id="moveDiv"       @mousedown="down()"       @touchstart="down()"       @mousemove.prevent.stop="move()"       @touchmove.prevent.stop="move()"       @mouseup="end()"       @touchend="end()"     >       <img class="img-kf" src="../../assets/images/csVip/kf.webp" /> </div>

2、在data里面设置

position: { x: 0, y: 0 },       nx: "",       ny: "",       dx: "",       dy: "",       xPum: "",       yPum: "",

3、在方法里面写拖拽方法

//移动端拖拽事件     down() {       this.flags = true;       let touch;       if (event.touches) {         touch = event.touches[0];       } else {         touch = event;       }       this.position.x = touch.clientX;       this.position.y = touch.clientY;       this.dx = moveDiv.offsetLeft;       this.dy = moveDiv.offsetTop;     },     move() {       if (this.flags) {         let touch;         if (event.touches) {           touch = event.touches[0];         } else {           touch = event;         }         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;         //添加限制:只允许在屏幕内拖动         //屏幕宽度减去悬浮框宽高         const maxWidth = document.body.clientWidth - 54;         const maxHeight = document.body.clientHeight - 54;         if (this.xPum < 0) {           //屏幕x限制           this.xPum = 0;         } else if (this.xPum > maxWidth) {           this.xPum = maxWidth;         }         if (this.yPum < 0) {           //屏幕y限制           this.yPum = 0;         } else if (this.yPum > maxHeight) {           this.yPum = maxHeight;         }         moveDiv.style.left = this.xPum + "px";         moveDiv.style.top = this.yPum + "px";         //阻止页面的滑动默认事件         document.addEventListener(           "touchmove",           function () {             // 1.2 如果碰到滑动问题,请注意是否获取到 touchmove             // event.preventDefault(); //jq 阻止冒泡事件             event.stopPropagation(); // 如果没有引入jq 就用 stopPropagation()           },           false         );       }     },     //鼠标释放时候的函数     end() {       this.flags = false;     },

4、css样式

.xuanfu {     width: 1.7rem;     height: 1.7rem;     border-radius: 50%;     // background: rgb(213, 91, 91);     position: fixed;     bottom: 4rem;     right: 0.4rem;     z-index: 9999999999;     text-align: center;     .img-kf {       width: 1.7rem;       height: 1.7rem;     }   }

到这里,我们的悬浮小图标就做完了。

推荐阅读

    vue项目一些常见问题

    vue项目一些常见问题,组件,样式,**样式污染问题**同样的样式不需要在每个组件都复制组件内单独的样式加外层class包裹。加scope。否则只是

    01-Vue项目实战-网易云音乐-准备工作

    01-Vue项目实战-网易云音乐-准备工作,网易,项目,前言在接下来的一段时间,我会仿照网易云音乐,利用Vue开发一个移动端的网易云音乐项目。在做

    渲小图设置|3d渲染小图怎么设置

    渲小图设置|3d渲染小图怎么设置,,1. 3d渲染小图怎么设置一般建议同时设置噪点等级和时间,噪点等级在2%-3%都是可以保证图片质量的,设置时间

    01- 第一天 spring boot2.3.1 +vue3.0 后台管理系统的研发

    01- 第一天 spring boot2.3.1 +vue3.0 后台管理系统的研发,自己的,后台,后台框架一直想开发一套完全属于自己的后台,但是18年的时候,曾经答

    Vue项目中 App.vue文件

    Vue项目中 App.vue文件,文件,内容, 在App.vue文件中,定义了一个id为app的div,在这个div板块中放置Helloworld组件,文件内容如下图所示:在

    小图标怎么设置|小图标怎么设置手机

    小图标怎么设置|小图标怎么设置手机,,1. 小图标怎么设置手机步骤如下:1.在手机设置菜单中,下拉找到---更多设置,点击进入。2.进入更多设置,找

    1-Vue构造函数的生成

    1-Vue构造函数的生成,函数,属性,版本:@2.6.10环境:web ;思维图:www.processon.com/view/link/5…我们使用的Vue是一个经过层层加强的构造函数