国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

vue移動端寫的拖拽功能示例代碼

瀏覽:12日期:2022-11-25 18:00:21

相關知識點

touchstart 當在屏幕上按下手指時觸發(fā)touchmove 當在屏幕上移動手指時觸發(fā)touchend 當在屏幕上抬起手指時觸發(fā)mousedown mousemove mouseup對應的是PC端的事件touchcancel 當一些更高級別的事件發(fā)生的時候(如電話接入或者彈出信息)會取消當前的touch操作,即觸發(fā) touchcancel。一般會在touchcancel時暫停游戲、存檔等操作。

效果圖

vue移動端寫的拖拽功能示例代碼

實現(xiàn)步驟html

總結了一下評論,好像發(fā)現(xiàn)大家都碰到了滑動的問題。就在這里提醒一下吧。可將該懸浮 DIV 同你的 scroller web 同級。

<template><div id='webId'> <div>你的web頁面</div> <!-- 1.1 如果碰到滑動問題,請檢查這里是否屬于同一點。 --> <!-- 懸浮的HTML --> <div @mousedown='down()' @touchstart='down()' @mousemove.prevent.stop='move()' @touchmove.prevent.stop='move()' @mouseup='end()' @touchend='end()' > <div class='yuanqiu'>11</div> </div></div></template>

js

<script>data() { return { flags: false, position: { x: 0, y: 0 }, nx: ’’, ny: ’’, dx: ’’, dy: ’’, xPum: ’’, yPum: ’’, }}methods: { // 實現(xiàn)移動端拖拽 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; //添加限制:只允許在屏幕內(nèi)拖動 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); } },//鼠標釋放時候的函數(shù) end(){ this.flags = false; },}</script>

css

<style> /*css樣式可自定義 僅提供參考*/ #webId { position: relative; } .xuanfu { height: 54px; /* rem = 12px */ width: 54px; /*1.3 如果碰到滑動問題,請檢查 z-index。z-index需比web大一級*/ z-index: 999; position: fixed; top: 4.2rem; right: 3.2rem; border-radius: 0.8rem; background-color: rgba(0, 0, 0, 0.55); } .yuanqiu { height: 2.7rem; width: 2.7rem; border: 0.3rem solid rgba(140, 136, 136, 0.5); margin: 0.65rem auto; color: #000000; font-size: 1.6rem; line-height: 2.7rem; text-align: center; border-radius: 100%; background-color: #ffffff; }</style>

總結

到此這篇關于vue移動端寫的拖拽功能示例代碼的文章就介紹到這了,更多相關vue移動端拖拽內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持好吧啦網(wǎng)!

標簽: Vue
相關文章:
主站蜘蛛池模板: 郴州市| 和田市| 西宁市| 静宁县| 万源市| 黎城县| 卓资县| 阳新县| 泌阳县| 康保县| 广西| 东乡| 韩城市| 樟树市| 安康市| 札达县| 东源县| 大名县| 城固县| 汉阴县| 新营市| 北海市| 志丹县| 阿合奇县| 宝清县| 芒康县| 沽源县| 阿拉善右旗| 绥中县| 辽宁省| 石屏县| 日喀则市| 恩平市| 双牌县| 闵行区| 平定县| 茂名市| 东源县| 禄劝| 枞阳县| 波密县|