Created
February 10, 2016 10:04
-
-
Save Veve2/8fe98b5c1f006fcc6437 to your computer and use it in GitHub Desktop.
Faire vibrer un téléphone en Javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Permet de préfixer les navigateurs | |
navigator.vibrate = navigator.vibrate || navigator.webkitVibrate || navigator.mozVibrate || navigator.msVibrate; | |
// Si l'API vibrate est supportée, on fait vibrer le téléphone 1/2 seconde | |
if (navigator.vibrate) { | |
navigator.vibrate(500); | |
} | |
//Il est également possible de faire vibrer plusieurs fois le téléphone en passant un tableau en paramètre : | |
if (navigator.vibrate) { | |
navigator.vibrate([300, 300, 300]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment