cursor-position
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

cursor-position

Download Count

Demo image

Simple module for getting click/touch position in element or window.

Install

yarn add cursor-position

Or with npm:

npm install cursor-position --save

Usage

Library has only one function: GetCursorPosition(options)

import GetCursorPosition from 'cursor-position'
 
document.setEventListener('mousemove', () => {
  const {x, y} = GetCursorPosition()
  console.log(x, y)
})

Options

{
    event?: MouseEvent | TouchEvent
    absolute?: boolean
    scroll?: boolean
}
Name Type Required Default Description
event MouseEvent TouchEvent No window.event Click event
absolute Boolean No true Determine if position must be calculated from body or from parent element
scroll Boolean No false Determine if position must include scroll value

Response

{
  x number
  y number
}

What's new

v1.0.0 (BREAKING CHANGES)

- rewrited library in typescript
- removed eslint
- removed @flow
- changed options
- added some tests (in progress)

v0.0.3

- first release

License

Apache License 2.0

Package Sidebar

Install

npm i cursor-position

Weekly Downloads

386

Version

1.0.1

License

Apache-2.0

Unpacked Size

17.9 kB

Total Files

5

Last publish

Collaborators

  • exelban