如何让谷歌浏览器进度条拖动至区域外仍触发鼠标移动事件?

如何让谷歌浏览器进度条拖动至区域外仍触发鼠标移动事件?

如何实现谷歌浏览器进度条拖动至区域外仍触发鼠标移动事件

谷歌浏览器中,传统的事件捕获方法(例如 setCapture() 和 window.captureEvents())已被弃用。下面介绍一种实现进度条拖动至区域外仍触发鼠标移动事件的方法:

const button = document.querySelector('button');button?.addEventListener('mousedown', handleMoveStart);let startPoint: { x: number; y: number } | undefined;let originalOnSelectStart: Document['onselectstart'] = null;function handleMoveStart(e: MouseEvent) {  e.stopPropagation();  if (e.ctrlKey || [1, 2].includes(e.button)) return;  window.getSelection()?.removeAllRanges();  e.stopImmediatePropagation();  window.addEventListener('mousemove', handleMoving);  window.addEventListener('mousedown', handleMoveEnd);  originalOnSelectStart = document.onselectstart;  document.onselectstart = () => false;  startPoint = { x: e.x, y: e.y };}function handleMoving(e: MouseEvent) {  if (!startPoint) return;  // 在此执行进度条拖动至区域外的处理逻辑}function handleMoveEnd(e: MouseEvent) {  window.removeEventListener('mousemove', handleMoving);  window.removeEventListener('mousedown', handleMoveEnd);  startPoint = undefined;  if (document.onselectstart !== originalOnSelectStart) {    document.onselectstart = originalOnSelectStart;  }}

此代码通过禁用文本选择(onselectstart)并添加mousemove事件侦听器,实现了进度条拖动至区域外仍触发鼠标移动事件。当鼠标按下时,它会记录开始点,并在此后持续触发移动事件,直到鼠标松开。

以上就是如何让谷歌浏览器进度条拖动至区域外仍触发鼠标移动事件?的详细内容,更多请关注创想鸟其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1556391.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2025年12月22日 02:00:15
下一篇 2025年12月22日 02:00:24

相关推荐

发表回复

登录后才能评论
关注微信