rafelbev / phonegap-plugin-loading-spinner

PhoneGap 3 plugin to show a loading spinner with optional dark overlay.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

phonegap-plugin-loading-spinner

PhoneGap 3 plugin to show a loading spinner with optional dark overlay.

screenshot

Usage

Add plugin to your project:

cordova plugin add https://github.com/mobimentum/phonegap-plugin-loading-spinner.git

Add the following to your config.xml to use version 1.0.0 of this plugin (recommended):

<gap:plugin name="it.mobimentum.phonegapspinnerplugin" />

You can also omit the version tag to always use the most recent version of this plugin. Note that this will result in your app being automatically updated with new versions of this plugin as they are released, and may result in unexpected behaviour.

Show spinner with default arguments:

spinnerplugin.show();

Show spinner with optional arguments:

spinnerplugin.show({
    overlay: false,    // defaults to true
    timeout: 30,       // defaults to 0 (no timeout)
    fullscreen: true,  // defaults to false
});

Hide spinner:

spinnerplugin.hide();

Usage with jQuery Mobile

I encourage you to use the following code to gracefully replace the default jQM loader:

onDeviceReady: function() {
	// Native loading spinner
	if (window.spinnerplugin) {
		$.extend($.mobile, {
			loading: function() {
				// Show/hide spinner
				var arg = arguments ? arguments[0] : '';
				if (arg == 'show') spinnerplugin.show({'overlay':true});
				else if (arg == 'hide') spinnerplugin.hide();			

				// Compatibility with jQM 1.4
				return { loader: function() { } }
			}
		});	
	}
}

Thus, if the SpinnerPlugin is added and working the native spinner would be used, otherwise the standard jQM loader is fired.

About

PhoneGap 3 plugin to show a loading spinner with optional dark overlay.

License:Apache License 2.0


Languages

Language:Java 86.7%Language:JavaScript 10.1%Language:Batchfile 1.5%Language:Objective-C 0.9%Language:CSS 0.5%Language:HTML 0.3%Language:Makefile 0.0%