lesca-click
v5.0.1
Published
use for prevent browser default behavior. for web app without scroll.
Downloads
214
Readme
Why use it?
use for prevent browser default behavior. usually used in web without scroll app.
Installation
$ npm install lesca-click --saveDemo
Usage
import Click from 'lesca-click';
Click.install();
Click.add('.target', (e) => {
console.log('target clicked');
});
// find single className only
<div class='target'> // good
<div class='target on'> // bed
Methods
| method | options | type | description | default | | :----------------------- | :-------: | :------: | :----------------------------------: | ------: | | .install() | | | install | true | | add(target, execution) | target | string | selector => ".target" or "#target" | | | | execution | function | call when target clicked | | | remove(target) | target | string | selector => ".target" or "#target" | | | clear() | | | clear all functions | | | setPreventDefault(value) | value | boolean | set preventDefault enable or disable | | | addPreventExcept(target) | target | string | ".target" or "#target" | |
Features
- maintain if necessary
