登录
首页 >  文章 >  前端

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

时间:2024-11-26 08:54:40 379浏览 收藏

珍惜时间,勤奋学习!今天给大家带来《如何让谷歌浏览器进度条拖动至区域外仍触发鼠标移动事件? 》,正文内容主要涉及到等等,如果你正在学习文章,或者是对文章有疑问,欢迎大家关注我!后面我会持续更新相关内容的,希望都能帮到正在学习的大家!

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

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

在谷歌浏览器中,传统的事件捕获方法(例如 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事件侦听器,实现了进度条拖动至区域外仍触发鼠标移动事件。当鼠标按下时,它会记录开始点,并在此后持续触发移动事件,直到鼠标松开。

今天关于《如何让谷歌浏览器进度条拖动至区域外仍触发鼠标移动事件? 》的内容介绍就到此结束,如果有什么疑问或者建议,可以在golang学习网公众号下多多回复交流;文中若有不正之处,也希望回复留言以告知!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>