Web实现悬浮球-可点击拖拽禁止区域

这次要实现的是这种效果,能够在页面上推拽和点击的,拖拽的话,就跟随鼠标移动,点击的话,就触发新的行为,当然也有指定某些区域不能拖拽,接下来就一起来看看有什么难点吧~

需要监听的鼠标事件

既然是web页面,那肯定要监听的就算鼠标事件

mousedown(MDN: https://developer.mozilla.org/zh-CN/docs/Web/API/Element/mousedown_event)

mousemove(MDN: https://developer.mozilla.org/zh-CN/docs/Web/API/Element/mousemove_event )

mouseup(MDN: https://developer.mozilla.org/zh-CN/docs/Web/API/Element/mouseup_event)

这三个事件应该大家都不陌生mousedown(鼠标按下),mousemove(鼠标移动), mouseup(鼠标抬起)

mousedown

window.onload = () => {ballDom.addEventListener('mousedown', ballMoveDown)ballDom.addEventListener('touchstart', ballMoveDown)
}window.unload = () => {ballDom.removeEventListener('mousedown', ballMoveDown)ballDom.removeEventListener('touchstart', ballMoveDown)
}

页面初始化完成就监听这两个事件,touchstart是为了在移动端也能正常,所以也监听。

页面卸载,就取消绑定事件。

接下来就算鼠标按下事件触发,就需要监听鼠标移动和鼠标抬起事件

const ballMoveDown = (event) => {window.addEventListener('mousemove', ballMove, false)window.addEventListener('mouseup', ballUp, false)window.addEventListener('touchmove', ballMove, false)window.addEventListener('touchend', ballUp, false)}

mouseup

同样,鼠标抬起,需要把这些事件给取消

const ballUp = (event) => {// 移除鼠标移动事件window.removeEventListener('mousemove', ballMove)window.removeEventListener('touchmove', ballMove)// 移除鼠标松开事件window.removeEventListener('mouseup', ballUp)window.removeEventListener('touchend', ballUp)}

接下来,最重要的就是鼠标移动

mousemove

由于鼠标移动到哪里,我们需要把悬浮球也移动到相应的位置,所以我这里使用的是transform属性,使用这个属性的好处就是,不会脱离文档流,不影响页面布局,可以优化动画的性能。

然后,就是计算了,(event.touches[0].clientX, event.touches[0].clientY)可以得到鼠标在页面上的坐标,这会是我们的移动距离吗?

这里区分情况,如果你是全屏都是移动区域,那肯定就是啦

如果移动的区域不是全屏,就需要计算了。

所以我们页面初始化的时候,需要得到移动区域的范围,我这里就用上下左右来表示

window.onload = () => {// 移动的范围containerProfile = {bottom: window.innerHeight,left: 0,right: window.innerWidth,top: 0}ballDom.addEventListener('mousedown', ballMoveDown)ballDom.addEventListener('touchstart', ballMoveDown)
}

拿到移动的范围,我们就可以开始计算了


const ballDom = document.getElementById('ballBtn')const ballMove = (event) => {const clientX = event.touches && event.touches[0] && event.touches[0].clientX || event.clientXconst clientY = event.touches && event.touches[0] && event.touches[0].clientY || event.clientYballDom.style.transform = `translate3d(${clientX}px, ${clientY}px, 0)`
}

效果如下图:

然后,你会发现,鼠标一直在悬浮球的左上角,而不是居中的位置,这是为什么导致的,以开始鼠标是在元素内部的,然后一移动,就移动到元素左上角了呢?

所以,我们应该在鼠标按下的时候,记录一下鼠标的位置,然后鼠标移动的时候,计算这个距离

这样就能的得到鼠标按下和鼠标移动时,鼠标两个位置之间的距离

const moveXDiff = clientX - mousedownPos.x // 鼠标在x 轴移动的距离
const moveYDiff = clientY - mousedownPos.y // 鼠标在y 轴移动的距离

那这肯定不是移动后,悬浮球的位置,因为这跟距离肯定特别小,还要加上悬浮球未移动前的top和left

按下和鼠标移动的两个位置之间的距离,就算元素需要移动的距离

鼠标按下的时候,需要获取到元素在移动前的位置

const moveXDiff = clientX - mousedownPos.x // 鼠标在x 轴移动的距离
const moveYDiff = clientY - mousedownPos.y // 鼠标在y 轴移动的距离
// 悬浮球的位置
const canMoveX = bindDomProfile.left + moveXDiff
const canMoveY = bindDomProfile.top + moveYDiff

现在就能正常的移动了,这样移动就变得很丝滑了

以为到这里就结束了吗?还不行哦,还需要优化一下

我们之前是获取了鼠标移动的范围的,那么在移动的时候,我们肯定需要限制一下范围,不能超出屏幕了还能移动,对吧~

限制一下,不能超过移动的最大范围

const moveArrangeX = containerProfile.right - bindDomProfile.width // 元素可在x 轴移动的最大值
const moveArrangeY = containerProfile.bottom - bindDomProfile.height // 元素可在y 轴移动的最大值let canMoveX = Math.max(0, Math.min(bindDomProfile.left + moveXDiff, moveArrangeX))
let canMoveY = Math.max(0, Math.min(bindDomProfile.top + moveYDiff, moveArrangeY))

限制在400*400的区域内

window.onload = () => {// 拖拽的范围containerProfile = {bottom: 400,left: 0,right: 400,top: 0}ballDom.addEventListener('mousedown', ballMoveDown)ballDom.addEventListener('touchstart', ballMoveDown)// 监听drag 一系列事件 防止元素松开鼠标的时候还可以拖动ballDom.addEventListener('dragstart', ballUp)ballDom.addEventListener('dragover', ballUp)ballDom.addEventListener('drop', ballUp)ballDom.addEventListener('click', clickBall)}

现在移动的最基本功能,已经满足啦,接下来在此基础上,新增其他功能

移动之后触发点击事件

除了悬浮球移动,肯定还是希望它能够执行点击事件,但是你会发现,绑定了点击事件之后,移动也会触发点击

效果如下:


const clickBall = () => {ballDom.classList.add('playBall')setTimeout(() => {ballDom.classList.remove('playBall')}, 500)
}window.onload = () => {// 拖拽的范围containerProfile = {bottom: 400,left: 0,right: 400,top: 0}ballDom.addEventListener('mousedown', ballMoveDown)ballDom.addEventListener('touchstart', ballMoveDown)// 监听drag 一系列事件 防止元素松开鼠标的时候还可以拖动ballDom.addEventListener('dragstart', ballUp)ballDom.addEventListener('dragover', ballUp)ballDom.addEventListener('drop', ballUp)ballDom.addEventListener('click', clickBall)
}

这样肯定就不满意了,也许点击悬浮球,是为了执行点击的逻辑,但是移动,肯定是不能触发点击的

怎么办呢?其实很好解决,只需要加个变量,移动的时候,不触发点击逻辑就可以了

正常情况下是这样:

点击:mousedown -> mouseup -> click

移动:mousedown -> mousemove -> mouseup -> click

let isDragging = falseconst ballMoveDown = (event) => {isDragging = falsebindDomProfile = ballDom.getBoundingClientRect()mousedownPos.x = event.touches && event.touches[0].clientX || event.clientXmousedownPos.y = event.touches && event.touches[0].clientY ||event.clientYwindow.addEventListener('mousemove', ballMove, false)window.addEventListener('mouseup', ballUp, false)window.addEventListener('touchmove', ballMove, false)window.addEventListener('touchend', ballUp, false)
}const ballMove = (event) => {isDragging = trueconst moveArrangeX = containerProfile.right - bindDomProfile.width // 元素可在x 轴移动的最大值const moveArrangeY = containerProfile.bottom - bindDomProfile.height // 元素可在y 轴移动的最大值const clientX = event.touches && event.touches[0] && event.touches[0].clientX || event.clientXconst clientY = event.touches && event.touches[0] && event.touches[0].clientY || event.clientYconst moveXDiff = clientX - mousedownPos.x // 鼠标在x 轴移动的距离const moveYDiff = clientY - mousedownPos.y // 鼠标在y 轴移动的距离let canMoveX = Math.max(0, Math.min(bindDomProfile.left + moveXDiff, moveArrangeX))let canMoveY = Math.max(0, Math.min(bindDomProfile.top + moveYDiff, moveArrangeY))ballDom.style.transform = `translate3d(${canMoveX}px, ${canMoveY}px, 0)`
}const clickBall = () => {if (!isDragging) {ballDom.classList.add('playBall')setTimeout(() => {ballDom.classList.remove('playBall')}, 500)}
}

这样就解决了这个问题,接下来来个难度大点的需求

异常情况下,点击的时候也触发了mousemove事件

这就需要css控制pointer-events

https://developer.mozilla.org/zh-CN/docs/Web/CSS/pointer-events

使用pointer-events来阻止元素成为鼠标事件目标不一定意味着元素上的事件侦听器永远不会触发。如果元素后代明确指定了pointer-events属性并允许其成为鼠标事件的目标,那么指向该元素的任何事件在事件传播过程中都将通过父元素,并以适当的方式触发其上的事件侦听器。当然,位于父元素但不在后代元素上的鼠标活动都不会被父元素和后代元素捕获(鼠标活动将会穿过父元素而指向位于其下面的元素)。

我们希望为 HTML 提供更为精细的控制(而不仅仅是auto和none),以控制元素哪一部分何时会捕获鼠标事件。如果你有独特的想法,请添加至wiki 页面的 Use Cases 部分,以帮助我们如何针对 HTML 扩展pointer-events。

该属性也可用来提高滚动时的帧频。的确,当滚动时,鼠标悬停在某些元素上,则触发其上的 hover 效果,然而这些影响通常不被用户注意,并多半导致滚动出现问题。对body元素应用pointer-events:none,禁用了包括hover在内的鼠标事件,从而提高滚动性能。

const ballMove = (event) => {console.log('mousemove')isDragging = trueconst moveArrangeX = containerProfile.right - bindDomProfile.width // 元素可在x 轴移动的最大值const moveArrangeY = containerProfile.bottom - bindDomProfile.height // 元素可在y 轴移动的最大值const clientX = event.touches && event.touches[0] && event.touches[0].clientX || event.clientXconst clientY = event.touches && event.touches[0] && event.touches[0].clientY || event.clientYconst moveXDiff = clientX - mousedownPos.x // 鼠标在x 轴移动的距离const moveYDiff = clientY - mousedownPos.y // 鼠标在y 轴移动的距离let canMoveX = Math.max(0, Math.min(bindDomProfile.left + moveXDiff, moveArrangeX))let canMoveY = Math.max(0, Math.min(bindDomProfile.top + moveYDiff, moveArrangeY))ballDom.style.transform = `translate3d(${canMoveX}px, ${canMoveY}px, 0)`ballDom.style.pointerEvents = 'none'
}const ballUp = (event) => {console.log('mouseup')// 移除鼠标移动事件window.removeEventListener('mousemove', ballMove)window.removeEventListener('touchmove', ballMove)// 移除鼠标松开事件window.removeEventListener('mouseup', ballUp)window.removeEventListener('touchend', ballUp)ballDom.style.pointerEvents = null
}

加上这个属性之后, 移动就不会触发点击事件了

移动:mousedown -> mousemove -> mouseup

点击:mousedown->mouseup->click

移动范围内,指定区域不能移入

这是什么意思呢?

看图更加容易理解,真很显然,就是在移动的时候要做判断,移入移动的区域位于禁止移入的范围中,那就需要将悬浮球停留在禁止移入的边缘线上。

当然如果鼠标进入到禁止移动的区域中,那应该立刻结束移动事件,也就是手动触发mouseover,因为不能让悬浮球碰壁了,鼠标进入禁止移入的区域,出来时,还能继续移动,对吧

这里,第二个很好解决

// 拿到禁止移动的尺寸
const unMoveContain = unMoveArea.getBoundingClientRect()const ballMove = (event) => {...const forbidViewX = Math.floor(unMoveContain.left) // (forbidViewX, forbidViewY)是禁止区域的左上角const forbidViewY = Math.floor(unMoveContain.top)const forbidViewWidth = Math.ceil(unMoveContain.width)const forbidViewHeight = Math.ceil(unMoveContain.height)// 结束移动,只要移动进禁止区域,就结束移动if (clientX > forbidViewX && clientX < (forbidViewWidth + forbidViewX) && clientY > forbidViewY && clientY < (forbidViewHight + forbidViewY)) {ballUp()}...
}

鼠标进入禁止区域的条件,如图:

上图的cx和cy

let cx = forbidViewX
let cy = forbidViewY
let fx = forbidViewX + forbidViewWidth
let fy = forbidViewY + forbidViewHeight

找到条件之后,条件内,需要怎么做呢?

如果鼠标的坐标距离禁止区域的4条边最近的一条边,那悬浮球就会停在这条边上,也就是说,这里可能是x轴坐标不变,也可能是y坐标不变

距离禁止区域的4条边

这需要计算出来

let topLeftY = Math.abs(clientY - forbidViewY) // 当前坐标y轴距离禁止区域上方距离
let bottomLeftY = Math.abs(clientY - (forbidViewHeight + forbidViewY)) // 当前坐标y轴距离禁止区域下方距离
let topRightX = Math.abs(clientX - (forbidViewWidth + forbidViewX)) // 当前坐标x轴距离禁止区域右方距离
let topLeftX = Math.abs(clientX - forbidViewX) // 当前坐标x轴距离禁止区域左方距离

然后需要比较这四条边,哪条边最端,得到鼠标是从哪条边移入禁止区域的

const minVal = Math.min(...[topLeftY, topLeftX, bottomLeftY, topRightX])

得到最短的边之后,接下来就是悬浮球的坐标了

if (topLeftY == minVal) {canMoveY = forbidViewY - bindDomProfile.height // 距离禁止区域上方最近,悬浮球y坐标位于禁止区域最上方
} else if (bottomLeftY  === minVal) {canMoveY = forbidViewHeight + forbidViewY // 距离禁止区域下方最近,悬浮球y坐标位于禁止区域最下方
} else if (topRightX === minVal) {canMoveX = forbidViewWidth + forbidViewX // 距离禁止区域右边最近,悬浮球x坐标位于禁止最右边
} else if (topLeftX  === minVal){ canMoveX = forbidViewX - bindDomProfile.width // 距离禁止区域左边最近,悬浮球x坐标位于禁止最右边
}

这两条边是需要减去悬浮球的宽高的,因为鼠标移入了,鼠标本身就需要在悬浮球里的,那悬浮球就不能一半进入禁止区域

这就是mousemove的全部代码了,看下面

const handleForbidArea = ({canMoveX, canMoveY, clientX, clientY}) => {const forbidViewX = Math.floor(unMoveContain.left) // (forbidViewX, forbidViewY)是禁止区域的左上角const forbidViewY = Math.floor(unMoveContain.top)const forbidViewWidth = Math.ceil(unMoveContain.width)const forbidViewHeight = Math.ceil(unMoveContain.height)// 结束拖拽,只要拖拽进禁止区域,就结束拖拽if (clientX > forbidViewX && clientX < (forbidViewWidth + forbidViewX) && clientY > forbidViewY && clientY < (forbidViewHeight + forbidViewY)) {ballUp()}// 控制悬浮球不能进入禁止区域if (clientX > forbidViewX && clientY > forbidViewY && clientY < (forbidViewHeight + forbidViewY) && clientX < (forbidViewWidth + forbidViewX)) {let topLeftY = Math.abs(clientY - forbidViewY) // 当前坐标y轴距离禁止区域上方距离let bottomLeftY = Math.abs(clientY - (forbidViewHeight + forbidViewY)) // 当前坐标y轴距离禁止区域下方距离let topRightX = Math.abs(clientX - (forbidViewWidth + forbidViewX)) // 当前坐标x轴距离禁止区域右方距离let topLeftX = Math.abs(clientX - forbidViewX) // 当前坐标x轴距离禁止区域左方距离const minVal = Math.min(...[topLeftY, topLeftX, bottomLeftY, topRightX])if (topLeftY == minVal) {canMoveY = forbidViewY - bindDomProfile.height // 距离禁止区域上方最近,悬浮球y坐标位于禁止区域最上方} else if (bottomLeftY  === minVal) {canMoveY = forbidViewHeight + forbidViewY // 距离禁止区域下方最近,悬浮球y坐标位于禁止区域最下方} else if (topRightX === minVal) {canMoveX = forbidViewWidth + forbidViewX // 距离禁止区域右边最近,悬浮球x坐标位于禁止最右边} else if (topLeftX  === minVal){ canMoveX = forbidViewX - bindDomProfile.width // 距离禁止区域左边最近,悬浮球x坐标位于禁止最右边}}return {x: canMoveX, y: canMoveY}
}const ballMove = (event) => {isDragging = trueconst moveArrangeX = containerProfile.right - bindDomProfile.width // 元素可在x 轴移动的最大值const moveArrangeY = containerProfile.bottom - bindDomProfile.height // 元素可在y 轴移动的最大值const clientX = event.touches && event.touches[0] && event.touches[0].clientX || event.clientXconst clientY = event.touches && event.touches[0] && event.touches[0].clientY || event.clientYconst moveXDiff = clientX - mousedownPos.x // 鼠标在x 轴移动的距离const moveYDiff = clientY - mousedownPos.y // 鼠标在y 轴移动的距离let canMoveX = Math.max(0, Math.min(bindDomProfile.left + moveXDiff, moveArrangeX))let canMoveY = Math.max(0, Math.min(bindDomProfile.top + moveYDiff, moveArrangeY))let { x, y } = handleForbidArea({canMoveX, canMoveY, clientX, clientY})ballDom.style.transform = `translate3d(${x}px, ${y}px, 0)`
}

最终效果就是这样的:

如果出现松开鼠标,还能拖动的情况,就需要监听drag一系列事件,这个不一定都会出现,因为这只是在鼠标移动的时候,mousemove事件还没有执行完,导致鼠标离开了悬浮球,然后再鼠标抬起,这跟个时候就会产生这个现象。

// 监听drag 一系列事件 防止元素松开鼠标的时候还可以拖动
ballDom.addEventListener('dragstart', ballUp)
ballDom.addEventListener('dragover', ballUp)
ballDom.addEventListener('drop', ballUp)

全部的代码:
jcode

总结

1.处理图像边界问题,最好画图,比较清晰,单纯的想象,容易遗漏

2.JavaScript基础很重要

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/230761.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【LeetCode刷题】--77.组合

77.组合 class Solution {public List<List<Integer>> combine(int n, int k) {List<List<Integer>> ans new ArrayList<>();if( k < 0 || n < k){return ans;}Deque<Integer> list new ArrayDeque<>();dfs(ans,list,n,k,1)…

接口中的大事务,该如何进行优化?

前言 作为后端开发的程序员&#xff0c;我们常常会的一些相对比较复杂的逻辑&#xff0c;比如我们需要给前端写一个调用的接口&#xff0c;这个接口需要进行相对比较复杂的业务逻辑操作&#xff0c;比如会进行&#xff0c;查询、远程接口或本地接口调用、更新、插入、计算等一…

MySQL主从复制架构

MySQL主从复制架构 一、MySQL集群概述 ##1、集群的主要类型 高可用集群&#xff08;High Available Cluster&#xff0c;HA Cluster&#xff09; 高可用集群是指通过特殊的软件把独立的服务器连接起来&#xff0c;组成一个能够提供故障切换&#xff08;Fail Over&#xff09…

java开发需要用到的软件,必备软件工具一览

java开发需要用到的软件&#xff0c;必备软件工具一览 如果你对Java编程感兴趣或已经是一名Java开发者&#xff0c;你需要一些必备的软件工具来提高你的生产力和简化开发过程。在本文中&#xff0c;我们将探讨Java开发所需的关键软件工具&#xff0c;并通过具体示例来解释它们的…

一个金融机构高效功能!不想加班的打工人有福了!

随着信息技术的飞速发展&#xff0c;现代企业对于数据中心和服务器的依赖程度越来越高。为了确保这些关键设备的可靠运行&#xff0c;不可中断电源&#xff08;UPS&#xff09;系统的作用愈发重要。 UPS系统不仅能够提供电力备份&#xff0c;还能保护设备免受电力波动和突发事件…

【element-plus使用】el-select自定义样式、下拉框选项过长等问题解决

1、自定义样式 <template><el-select v-model"value" style"width: 150px"><el-option label"选项一" value"option1"></el-option><el-option label"选项二" value"option2"><…

Findreport中框架图使用的注意事项

目录 简介 测试数据 闭环链路关系 解决办法&#xff1a; 根不唯一 解决办法&#xff1a; 简介 在框架图的应用中&#xff0c;一些表达上下游关系的数据非常适合用于做链路图相关的报表。可以展示成雪花图&#xff0c;普通架构图。但是在实际操作中有几点关于数据的注意事…

jenkins使用nexus插件

nexus介绍 Nexus 是一个强大的仓库管理工具&#xff0c;用于管理和分发 Maven、npm、Docker 等软件包。它提供了一个集中的存储库&#xff0c;用于存储和管理软件包&#xff0c;并提供了版本控制、访问控制、构建和部署等功能。 Nexus 可以帮助开发团队提高软件包管理的效率和…

mysql8报sql_mode=only_full_group_by(存储过程一直报)

1&#xff1a;修改数据库配置(重启失效) select global.sql_mode;会打印如下信息 ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION里面包含 ONLY_FULL_GROUP_BY&#xff0c;那么就重新设置&#xff0c;在数据库中输入以下代码&#xff0c;去掉ONLY_FULL_GROU…

openGauss学习笔记-134 openGauss 数据库运维-例行维护-检查操作系统参数

文章目录 openGauss学习笔记-134 openGauss 数据库运维-例行维护-检查操作系统参数134.1 检查办法134.2 异常处理 openGauss学习笔记-134 openGauss 数据库运维-例行维护-检查操作系统参数 134.1 检查办法 通过openGauss提供的gs_checkos工具可以完成操作系统状态检查。 前提…

unity程序中的根目录

在unity程序中如果要解析或保存文件时&#xff0c;其根目录为工程名的下一级目录&#xff0c;也就是Assets同级的目标

【hacker送书第6期】深入理解Java核心技术

第6期图书推荐 内容简介作者简介精彩书评参与方式 内容简介 《深入理解Java核心技术&#xff1a;写给Java工程师的干货笔记&#xff08;基础篇&#xff09;》是《Java工程师成神之路》系列的第一本&#xff0c;主要聚焦于Java开发者必备的Java核心基础知识。全书共23章&#xf…