cordova-plugin-neushake

1.0.0 • Public • Published

Shake Gesture Detection for Cordova npm version

Apache Cordova / PhoneGap Plugin to detect when a physical device performs a shake gesture.

For iOS, the plugin uses the native shake detection. Fo all other platforms, it is based on a standalone JavaScript implementation I wrote last year (gist).

Install

Requires Cordova v5.0.0 or above.

Latest published version on npm

cordova plugin add cordova-plugin-neushake

Latest version from GitHub

cordova plugin add https://github.com/NeutrinosPlatform/cordova-plugin-neushake.git

Usage

You do not need to reference any JavaScript, the Cordova plugin architecture will add a shake object to your root automatically when you build.

NB: For non-iOS platforms, there is no native component to this plugin but it depends on the device motion plugin (added when this plugin is added).

Example

var onShake = function () {
  // Fired when a shake is detected
};
 
var onError = function () {
  // Fired when there is an accelerometer error (optional)
};
 
// Start watching for shake gestures and call "onShake"
// with a shake sensitivity of 40 (optional, default 30)
shake.startWatch(onShake, 40 /*, onError */);
 
// Stop watching for shake gestures
shake.stopWatch();

License

MIT License

More about us!

Find out more or contact us directly here :- http://www.neutrinos.co/

Facebook :- https://www.facebook.com/Neutrinos.co/

LinkedIn :- https://www.linkedin.com/company/25057297/

Twitter :- https://twitter.com/Neutrinosco

Instagram :- https://www.instagram.com/neutrinos.co/

Package Sidebar

Install

npm i cordova-plugin-neushake

Weekly Downloads

1

Version

1.0.0

License

MIT

Unpacked Size

21.4 kB

Total Files

10

Last publish

Collaborators

  • jatahworx