Socket
Socket
Sign inDemoInstall

swipe-detect

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    swipe-detect

A touchevent swipe detection utility for JavaScript applications.


Version published
Weekly downloads
140
decreased by-23.91%
Maintainers
1
Install size
10.6 kB
Created
Weekly downloads
 

Readme

Source

swipe-detect

npm CircleCI (all branches) License: MIT

A touchevent swipe detection utility for JavaScript applications.

Install

$ npm install --save swipe-detect

or

$ yarn add swipe-detect

Usage

import swipeDetect from 'swipe-detect';

swipeDetect(TARGET_DOM_NODE, YOUR_CALLBACK, THRESHOLD_FOR_SWIPE);

Where TARGET_DOM_NODE is the element you want to listen for swipes on, YOUR_CALLBACK is the function that should be called when a swipe occurs, and THRESHOLD_FOR_SWIPE is an int representing the pixels you want a swipe to gather before it is considered a swipe. Defaults to 150.

The callback will receive either 'left', 'right', 'up' or 'down'.

Contributing

Create an Issue if there is not already one created. Open up a Pull Request against master with your fix branch.

Install Dependencies

$ npm install

Run Tests

$ npm test

Keywords

FAQs

Last updated on 30 Oct 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc