8.0.0 • Published 1 year ago

anys-web-plugin-monitor-mouse-event v8.0.0

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
1 year ago

AnysMonitorMouseEventPlugin

Monitor mouse event.

Install

npm i anys-web-plugin-monitor-mouse-event
<script src="https://unpkg.com/anys-web-plugin-monitor-mouse-event"></script>

Usage

import { AnysMonitorMouseEventPlugin } from 'anys-web-plugin-monitor-mouse-event';
<script>
    const { AnysMonitorMouseEventPlugin } = window.anys;
    const anys = new Anys({
        plugins: [AnysMonitorMouseEventPlugin],
    });
</script>

Options

  • mouse: !isSupportTouch, total switch, when false all options items will not work
  • click: true,
  • mousemove: false,
  • mousedown: false,
  • mouseup: false,
  • wheel: false,
  • contextmenu: false,
const anys = new Anys({
    mouse: false,
});

Log

{
    type: 'click' | 'mousemove' | 'mousedown' | 'mouseup' | 'contextmenu',
    time: Date.now(),
    detail: {
        e: getPath(target),
        w: innerWidth,
        h: innerHeight,
        x: pageX,
        y: pageY,
        button,
    },
}
{
    type: 'wheel',
    time: Date.now(),
    detail: {
        e: getPath(target),
        deltaX,
        deltaY,
        deltaZ,
        mode: deltaMode,
    },
}
8.0.0

1 year ago

7.0.0

1 year ago

6.4.0

2 years ago

6.3.0

2 years ago

6.2.0

2 years ago

6.1.1

2 years ago

6.0.0

2 years ago

5.0.3

2 years ago

5.0.2

2 years ago

5.0.0

2 years ago

4.0.0

2 years ago

3.1.0

2 years ago

3.0.2

2 years ago

3.0.1

2 years ago

3.0.0

2 years ago

2.0.2

2 years ago

2.0.0

2 years ago

1.4.0

2 years ago

1.2.0

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.0

2 years ago

1.0.1

2 years ago