Giter VIP home page Giter VIP logo

event-position-provider's Introduction

Event Position Provider

To provide event info relative to specified HTMLElement.

usage

import EventPositionProvider from 'event-position-provider';

this.epp = new EventPositionProvider({
  entryNodes: [
    this.target,
    this.listNode,
  ],
})

API

EventPositionProvider

  • entryClasses(Array | String) : The watched node which will matched with.
  • entryNodes(Array): Nodes will watch.
  • watchEvent(Array | ['click', 'hover'], default: ['click']): Events it will watch.

click event

On default, this lib watch click event related to watched nodes; For these condition it will emit three different stat.eventType

  • willFire: It will be triggered on the first time click watch entries.
  • willDismiss: It will be triggered on the first time click outside the watch entries.
  • onPersistence: It will be triggered on the second or more times click watch entries.
this.epp.on('click', (stat) => {
  const { event, eventType } = stat;

  if (eventType === 'willDismiss') {
    // ...
  }

  if (eventType === 'willFire') {
    // ...
  }
})

hover event

On default, this lib watch hover event related to watched nodes; For these condition it will emit three different stat.eventType

  • willEnter: It will be triggered on mouseover the watched entries.
  • willLeave: It will be triggered on mouseleave the watched entries.
  • onMoving: It will be triggered on mouse moving on the watched entries.
this.epp.on('hover', (stat) => {
  const { event, eventType } = stat;

  if (eventType === 'willEnter') {
    // ...
  }

  if (eventType === 'willLeave') {
    // ...
  }
})

event-position-provider's People

Contributors

ryuever avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.