Skip to content

Instantly share code, notes, and snippets.

@bogomolov-dev
Created February 28, 2014 07:59
Show Gist options
  • Save bogomolov-dev/9267089 to your computer and use it in GitHub Desktop.
Save bogomolov-dev/9267089 to your computer and use it in GitHub Desktop.
// Vibriere 300ms, mach 200ms Pause und vibriere anschließend 800ms.
navigator.vibrate([300, 200, 800]);
// Vibration abbrechen
navigator.vibrate(0);
// Vibriere 1000ms
navigator.vibrate(1000);
navigator.vibrate = navigator.vibrate || navigator.webkitVibrate || navigator.mozVibrate || navigator.msVibrate;
if (navigator.vibrate) {
// API verfügbar
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment