登录
首页 >  文章 >  前端

在 Chrome 浏览器中,如何解决进度条区域外拖动进度条时鼠标移动事件无法触发的问题?

来源:php

时间:2024-11-16 13:12:42 366浏览 收藏

大家好,今天本人给大家带来文章《在 Chrome 浏览器中,如何解决进度条区域外拖动进度条时鼠标移动事件无法触发的问题?》,文中内容主要涉及到,如果你对文章方面的知识点感兴趣,那就请各位朋友继续看下去吧~希望能真正帮到你们,谢谢!

在 Chrome 浏览器中,如何解决进度条区域外拖动进度条时鼠标移动事件无法触发的问题?

chrome 区域外事件捕捉

在 chrome 浏览器中,由于 setcapture() 和 window.captureevents() 已被弃用,在进度条区域外拖动进度条时,将无法触发鼠标移动事件。以下代码通过监听 mousedown 事件来避免这种情况,并允许在进度条区域外继续触发鼠标移动事件:

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;
  // DO Something
}

function handleMoveEnd(e: MouseEvent) {
  window.removeEventListener('mousemove', handleMoving);
  window.removeEventListener('mousedown', handleMoveEnd);
  startPoint = undefined;
  if (document.onselectstart !== originalOnSelectStart) {
    document.onselectstart = originalOnSelectStart;
  }
}

到这里,我们也就讲完了《在 Chrome 浏览器中,如何解决进度条区域外拖动进度条时鼠标移动事件无法触发的问题?》的内容了。个人认为,基础知识的学习和巩固,是为了更好的将其运用到项目中,欢迎关注golang学习网公众号,带你了解更多关于的知识点!

声明:本文转载于:php 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>