You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

lc-swiper

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lc-swiper

Micro vanilla javascript (ES6) class making swipe events easy!

1.0.0
latest
Source
npmnpm
Version published
Weekly downloads
1
-66.67%
Maintainers
1
Weekly downloads
 
Created
Source

TouchSwipe events made easy, by LCweb

No dependencies vanilla javascript class to easily handle swipe events on page elements.

  • gives you the swipe delta in each direction
  • supports multiple instances per element
  • features a destroy public method (targeting the specific instance)

What do you want more from 2KB of code? :P
NB: obviously it works only for touch devices.

Installation & Usage

  • include lc-swiper.min.js

  • initialize plugin targeting one/multiple page elements and the callback function triggered after each swipe.

    NB: first parameter may be a textual selector or a DOM object (yes, also jQuery objects)

You must use a valid callback function as second parameter. It will be triggered each time a swipe event is performed.
It has got two parameters:

<script type="text/javascript>
new lc_swiper('#swipe_target', function(directions, $el) {

    // .. do something awesome!

    /*
     * directions object composition:
     * {
        up      : (int) number of pixels swiped
        right   : (int) number of pixels swiped
        down    : (int) number of pixels swiped
        left    : (int) number of pixels swiped
     * }
     */

});
</script>

Multiple actions and the destroy method

As said, you can setup multiple instances of the class and also destroy the single instance for a granular control on what is enabled

<script type="text/javascript>
const instance1 = new lc_swiper('#swipe_target', function(dir, $el) {
    ... 
});

const instance2 = new lc_swiper('#swipe_target', function(dir, $el) {
    ... 
});


// stop performing the first instance callback on swipe
instance1.destroy();
</script>

Copyright © Luca Montanari - LCweb

Keywords

javascript

FAQs

Package last updated on 22 Apr 2021

Did you know?

Socket

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