From 4340e4d0471ba984e086d7598953077adfb84171 Mon Sep 17 00:00:00 2001 From: Jan Piotrowski Date: Wed, 5 Dec 2018 16:24:13 +0100 Subject: [PATCH] remove outdated translations of README (#69) remove 4 year old outdated translations --- doc/de/README.md | 190 ----------------------------------------------- doc/de/index.md | 184 --------------------------------------------- doc/es/README.md | 189 ---------------------------------------------- doc/es/index.md | 165 ---------------------------------------- doc/fr/README.md | 171 ------------------------------------------ doc/fr/index.md | 165 ---------------------------------------- doc/it/README.md | 190 ----------------------------------------------- doc/it/index.md | 184 --------------------------------------------- doc/ja/README.md | 190 ----------------------------------------------- doc/ja/index.md | 184 --------------------------------------------- doc/ko/README.md | 190 ----------------------------------------------- doc/ko/index.md | 184 --------------------------------------------- doc/pl/README.md | 190 ----------------------------------------------- doc/pl/index.md | 184 --------------------------------------------- doc/ru/index.md | 170 ------------------------------------------ doc/zh/README.md | 190 ----------------------------------------------- doc/zh/index.md | 184 --------------------------------------------- 17 files changed, 3104 deletions(-) delete mode 100644 doc/de/README.md delete mode 100644 doc/de/index.md delete mode 100644 doc/es/README.md delete mode 100644 doc/es/index.md delete mode 100644 doc/fr/README.md delete mode 100644 doc/fr/index.md delete mode 100644 doc/it/README.md delete mode 100644 doc/it/index.md delete mode 100644 doc/ja/README.md delete mode 100644 doc/ja/index.md delete mode 100644 doc/ko/README.md delete mode 100644 doc/ko/index.md delete mode 100644 doc/pl/README.md delete mode 100644 doc/pl/index.md delete mode 100644 doc/ru/index.md delete mode 100644 doc/zh/README.md delete mode 100644 doc/zh/index.md diff --git a/doc/de/README.md b/doc/de/README.md deleted file mode 100644 index 42340eb..0000000 --- a/doc/de/README.md +++ /dev/null @@ -1,190 +0,0 @@ - - -# cordova-plugin-vibration - -[![Build Status](https://travis-ci.org/apache/cordova-plugin-vibration.svg)](https://travis-ci.org/apache/cordova-plugin-vibration) - -Dieses Plugin richtet mit dem W3C Vibration Spezifikation http://www.w3.org/TR/vibration/ - -Dieses Plugin bietet eine Möglichkeit, das Gerät zu vibrieren. - -Dieses Plugin definiert globale Objekte einschließlich `navigator.vibrate`. - -Obwohl im globalen Gültigkeitsbereich, sind sie nicht bis nach dem `deviceready`-Ereignis. - - document.addEventListener("deviceready", onDeviceReady, false); - function onDeviceReady() { - console.log(navigator.vibrate); - } - - -## Installation - - cordova plugin add cordova-plugin-vibration - - -## Unterstützte Plattformen - -navigator.vibrate, -navigator.notification.vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 and 8 - Windows (Windows Phone 8.1 devices only) - -navigator.notification.vibrateWithPattern -navigator.notification.cancelVibration - Android - Windows Phone 8 - Windows (Windows Phone 8.1 devices only) - -## vibrieren (empfohlen) - -Diese Funktion hat drei verschiedene Funktionalitäten, die auf der Grundlage von an sie übergebenen Parameter. - -### Standard vibrieren - -Vibriert das Gerät für einen bestimmten Zeitraum. - - navigator.vibrate(time) - - -oder - - navigator.vibrate([time]) - - --**time**: Millisekunden das Gerät vibriert. *(Anzahl)* - -#### Beispiel - - // Vibrate for 3 seconds - navigator.vibrate(3000); - - // Vibrate for 3 seconds - navigator.vibrate([3000]); - - -#### iOS Macken - - * **Zeit**: ignoriert die angegebene Zeit und für eine voreingestellte Zeit vibriert. - - navigator.vibrate(3000); // 3000 is ignored - -#### Windows und Blackberry-Kniffe - - * **Zeit**: Max. Zeit 5000ms (5 s) und min Zeit ist 1ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### Vibrieren Sie mit einem Muster (Android und Windows nur) - -Vibriert das Gerät mit einem vorgegebenen Muster - - navigator.vibrate(pattern); - - - * **Muster**: Folge von Dauer (in Millisekunden) für den ein-oder Ausschalten der Vibrator. *(Array von Zahlen)* - -#### Beispiel - - // Vibrate for 1 second - // Wait for 1 second - // Vibrate for 3 seconds - // Wait for 1 second - // Vibrate for 5 seconds - navigator.vibrate([1000, 1000, 3000, 1000, 5000]); - - -#### Windows Phone 8 Macken - - * vibrate(Pattern) fällt zurück vibrieren auf mit Standarddauer - -#### Windows-Eigenheiten - - * vibrate(Pattern) fällt zurück vibrieren auf mit Standarddauer - -### "Abbrechen" Vibration (nicht in iOS unterstützt) - -Sofort bricht alle derzeit ausgeführten Schwingungen. - - navigator.vibrate(0) - - -oder - - navigator.vibrate([]) - - -oder - - navigator.vibrate([0]) - - -Übergabe eines Parameters 0, wird ein leeres Array, oder ein Array mit einem Element der Wert 0 auftretender Schwingungen abbrechen. - -## *Notification.Vibrate (veraltet) - -Vibriert das Gerät für einen bestimmten Zeitraum. - - navigator.notification.vibrate(time) - - - * **time**: Millisekunden das Gerät vibriert. *(Anzahl)* - -### Beispiel - - // Vibrate for 2.5 seconds - navigator.notification.vibrate(2500); - - -### iOS Macken - - * **Zeit**: ignoriert die angegebene Zeit und für eine voreingestellte Zeit vibriert. - - navigator.notification.vibrate(); - navigator.notification.vibrate(2500); // 2500 is ignored - - -## *Notification.vibrateWithPattern (veraltet) - -Vibriert das Gerät mit einem vorgegebenen Muster. - - navigator.notification.vibrateWithPattern(pattern, repeat) - - - * **Muster**: Folge von Dauer (in Millisekunden) für den ein-oder Ausschalten der Vibrator. *(Array von Zahlen)* - * **repeat**: optionale Index in das Array Muster an der wiederholte (wird wiederholt, bis abgebrochen) zu starten, oder-1 für Wiederholung (Standard). *(Anzahl)* - -### Beispiel - - // Immediately start vibrating - // vibrate for 100ms, - // wait for 100ms, - // vibrate for 200ms, - // wait for 100ms, - // vibrate for 400ms, - // wait for 100ms, - // vibrate for 800ms, - // (do not repeat) - navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *Notification.cancelVibration (veraltet) - -Sofort bricht alle derzeit ausgeführten Schwingungen. - - navigator.notification.cancelVibration() - - -* Note - durch Angleichung an die w3c-Spezifikation, die markierten Methoden abgeschafft werden wird \ No newline at end of file diff --git a/doc/de/index.md b/doc/de/index.md deleted file mode 100644 index d6d58c4..0000000 --- a/doc/de/index.md +++ /dev/null @@ -1,184 +0,0 @@ - - -# cordova-plugin-vibration - -Dieses Plugin richtet mit dem W3C Vibration Spezifikation http://www.w3.org/TR/vibration/ - -Dieses Plugin bietet eine Möglichkeit, das Gerät zu vibrieren. - -Dieses Plugin definiert globale Objekte einschließlich `navigator.vibrate`. - -Obwohl im globalen Gültigkeitsbereich, sind sie nicht bis nach dem `deviceready`-Ereignis. - - document.addEventListener("deviceready", onDeviceReady, false); - function onDeviceReady() { - console.log(navigator.vibrate); - } - - -## Installation - - cordova plugin add cordova-plugin-vibration - - -## Unterstützte Plattformen - -navigator.vibrate, -navigator.notification.vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 and 8 - -navigator.notification.vibrateWithPattern, -navigator.notification.cancelVibration - Android - Windows Phone 8 - -## vibrieren (empfohlen) - -Diese Funktion hat drei verschiedene Funktionalitäten, die auf der Grundlage von an sie übergebenen Parameter. - -### Standard vibrieren - -Vibriert das Gerät für einen bestimmten Zeitraum. - - navigator.vibrate(time) - - -oder - - navigator.vibrate([time]) - - --**time**: Millisekunden das Gerät vibriert. *(Anzahl)* - -#### Beispiel - - // Vibrate for 3 seconds - navigator.vibrate(3000); - - // Vibrate for 3 seconds - navigator.vibrate([3000]); - - -#### iOS Macken - -* **Zeit**: ignoriert die angegebene Zeit und für eine voreingestellte Zeit vibriert. - - navigator.vibrate(3000); // 3000 is ignored - -#### Windows und Blackberry-Kniffe - -* **Zeit**: Max. Zeit 5000ms (5 s) und min Zeit ist 1ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### Vibrieren Sie mit einem Muster (Android und Windows nur) - -Vibriert das Gerät mit einem vorgegebenen Muster - - navigator.vibrate(pattern); - - -* **Muster**: Folge von Dauer (in Millisekunden) für den ein-oder Ausschalten der Vibrator. *(Array von Zahlen)* - -#### Beispiel - - // Vibrate for 1 second - // Wait for 1 second - // Vibrate for 3 seconds - // Wait for 1 second - // Vibrate for 5 seconds - navigator.vibrate([1000, 1000, 3000, 1000, 5000]); - - -#### Windows Phone 8 Macken - -* vibrate(Pattern) fällt zurück vibrieren auf mit Standarddauer - -### "Abbrechen" Vibration (nicht in iOS unterstützt) - -Sofort bricht alle derzeit ausgeführten Schwingungen. - - navigator.vibrate(0) - - -oder - - navigator.vibrate([]) - - -oder - - navigator.vibrate([0]) - - -Übergabe eines Parameters 0, wird ein leeres Array, oder ein Array mit einem Element der Wert 0 auftretender Schwingungen abbrechen. - -## *Notification.Vibrate (veraltet) - -Vibriert das Gerät für einen bestimmten Zeitraum. - - navigator.notification.vibrate(time) - - -* **time**: Millisekunden das Gerät vibriert. *(Anzahl)* - -### Beispiel - - // Vibrate for 2.5 seconds - navigator.notification.vibrate(2500); - - -### iOS Macken - -* **Zeit**: ignoriert die angegebene Zeit und für eine voreingestellte Zeit vibriert. - - navigator.notification.vibrate(); - navigator.notification.vibrate(2500); // 2500 is ignored - - -## *Notification.vibrateWithPattern (veraltet) - -Vibriert das Gerät mit einem vorgegebenen Muster. - - navigator.notification.vibrateWithPattern(pattern, repeat) - - -* **pattern**: Folge von Dauer (in Millisekunden) für den ein-oder Ausschalten der Vibrator. *(Array von Zahlen)* -* **repeat**: optionale Index in das Array Muster an der wiederholte (wird wiederholt, bis abgebrochen) zu starten, oder-1 für Wiederholung (Standard). *(Anzahl)* - -### Beispiel - - // Immediately start vibrating - // vibrate for 100ms, - // wait for 100ms, - // vibrate for 200ms, - // wait for 100ms, - // vibrate for 400ms, - // wait for 100ms, - // vibrate for 800ms, - // (do not repeat) - navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *Notification.cancelVibration (veraltet) - -Sofort bricht alle derzeit ausgeführten Schwingungen. - - navigator.notification.cancelVibration() - - -* Note - durch Angleichung an die w3c-Spezifikation, die markierten Methoden abgeschafft werden wird diff --git a/doc/es/README.md b/doc/es/README.md deleted file mode 100644 index ff28268..0000000 --- a/doc/es/README.md +++ /dev/null @@ -1,189 +0,0 @@ - - -# cordova-plugin-vibration - -[![Build Status](https://travis-ci.org/apache/cordova-plugin-vibration.svg)](https://travis-ci.org/apache/cordova-plugin-vibration) - -Este plugin se alinea con la vibración W3C especificación http://www.w3.org/TR/vibration/ - -Este plugin proporciona una manera de vibrar el dispositivo. - -Este plugin define objetos globales incluyendo`navigator.vibrate`. - -Aunque en el ámbito global, no están disponibles hasta después de la `deviceready` evento. - - document.addEventListener("deviceready", onDeviceReady, false); - function onDeviceReady() { - console.log(navigator.vibrate); - } - - -## Instalación - - cordova plugin add cordova-plugin-vibration - - -## Plataformas soportadas - -navigator.vibrate, -navigator.notification.vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 and 8 - Windows (Windows Phone 8.1 devices only) - -navigator.notification.vibrateWithPattern -navigator.notification.cancelVibration - Android - Windows Phone 8 - Windows (Windows Phone 8.1 devices only) - -## vibrar (recomendado) - -Esta función tiene tres diferentes funcionalidades basadas en los parámetros pasados a él. - -### Estándar de vibrar - -Vibra el dispositivo para una cantidad dada de tiempo. - - navigator.vibrate(time) - - -o - - navigator.vibrate([time]) - - --**tiempo**: milisegundos a vibrar el dispositivo. *(Número)* - -#### Ejemplo - - // Vibrate for 3 seconds - navigator.vibrate(3000); - - // Vibrate for 3 seconds - navigator.vibrate([3000]); - - -#### iOS rarezas - - * **time**: ignora el tiempo especificado y vibra por un tiempo preestablecido. - - navigator.vibrate(3000); // 3000 is ignored - -#### Windows y rarezas de Blackberry - - * **tiempo**: tiempo máximo es 5000ms (5s) y min tiempo 1ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### Vibrar con un patrón (Android y Windows solamente) - -Vibra el dispositivo con un patrón determinado - - navigator.vibrate(pattern); - - - * **patrón**: secuencia de duraciones (en milisegundos) que desea activar o desactivar el vibrador. *(Matriz de números)* - -#### Ejemplo - - // Vibrate for 1 second - // Wait for 1 second - // Vibrate for 3 seconds - // Wait for 1 second - // Vibrate for 5 seconds - navigator.vibrate([1000, 1000, 3000, 1000, 5000]); - - -#### Windows Phone 8 rarezas - - * Vibrate(Pattern) caídas detrás en vibración con duración predeterminada - -#### Windows rarezas - - * Vibrate(Pattern) caídas detrás en vibración con duración predeterminada - -### Cancelar vibración (no soportada en iOS) - -Inmediatamente se cancela cualquier vibración actualmente en ejecución. - - navigator.vibrate(0) - - -o - - navigator.vibrate([]) - - -o - - navigator.vibrate([0]) - - -Pasando en un parámetro de 0, una matriz vacía o una matriz con un elemento de valor 0 se cancelará cualquier vibraciones. - -## *Notification.Vibrate (obsoleto) - -Vibra el dispositivo para una cantidad dada de tiempo. - - navigator.notification.vibrate(time) - - - * **tiempo**: milisegundos a vibrar el dispositivo. *(Número)* - -### Ejemplo - - Vibrar por 2.5 segundos navigator.notification.vibrate(2500); - - -### iOS rarezas - - * **time**: ignora el tiempo especificado y vibra por un tiempo preestablecido. - - navigator.notification.vibrate(); - navigator.notification.vibrate(2500); // 2500 is ignored - - -## *Notification.vibrateWithPattern (obsoleto) - -Vibra el dispositivo con un patrón determinado. - - navigator.notification.vibrateWithPattern(pattern, repeat) - - - * **patrón**: secuencia de duraciones (en milisegundos) que desea activar o desactivar el vibrador. *(Matriz de números)* - * **repito**: índice opcional en la matriz de patrón en el cual comenzar repitiendo (se repite hasta que se cancele), o -1 para la no repetición (por defecto). *(Número)* - -### Ejemplo - - // Immediately start vibrating - // vibrate for 100ms, - // wait for 100ms, - // vibrate for 200ms, - // wait for 100ms, - // vibrate for 400ms, - // wait for 100ms, - // vibrate for 800ms, - // (do not repeat) - navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *Notification.cancelVibration (obsoleto) - -Inmediatamente se cancela cualquier vibración actualmente en ejecución. - - navigator.notification.cancelVibration() - - -* Nota: debido a la alineación con la especificación del w3c, los métodos favoritos a ser eliminados \ No newline at end of file diff --git a/doc/es/index.md b/doc/es/index.md deleted file mode 100644 index 1777ab1..0000000 --- a/doc/es/index.md +++ /dev/null @@ -1,165 +0,0 @@ - - -# cordova-plugin-vibration - -Este plugin se alinea con la vibración W3C especificación http://www.w3.org/TR/vibration/ - -Este plugin proporciona una manera de vibrar el dispositivo. - -Este plugin define objetos globales incluyendo`navigator.vibrate`. - -Aunque en el ámbito global, no están disponibles hasta después de la `deviceready` evento. - - document.addEventListener ("deviceready", onDeviceReady, false); - function onDeviceReady() {console.log(navigator.vibrate)}; - - -## Instalación - - Cordova plugin agregar cordova-plugin-vibration - - -## Plataformas soportadas - -Navigator.Vibrate, -Navigator.Notification.Vibrate - Amazon fuego OS - sistema operativo Android - BlackBerry 10 - Firefox - iOS - Windows Phone 7 y 8 - -navigator.notification.vibrateWithPattern, -navigator.notification.cancelVibration - Android - Windows Phone 8 - -## vibrar (recomendado) - -Esta función tiene tres diferentes funcionalidades basadas en los parámetros pasados a él. - -### Estándar de vibrar - -Vibra el dispositivo para una cantidad dada de tiempo. - - Navigator.Vibrate(Time) - - -o - - Navigator.Vibrate([time]) - - --**tiempo**: milisegundos a vibrar el dispositivo. *(Número)* - -#### Ejemplo - - Vibrar para navigator.vibrate(3000) 3 segundos; - - Vibrar para navigator.vibrate([3000]) 3 segundos; - - -#### iOS rarezas - -* **time**: ignora el tiempo especificado y vibra por un tiempo preestablecido. - - navigator.vibrate(3000); // 3000 is ignored - -#### Windows y rarezas de Blackberry - -* **tiempo**: tiempo máximo es 5000ms (5s) y min tiempo 1ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### Vibrar con un patrón (Android y Windows solamente) - -Vibra el dispositivo con un patrón determinado - - Navigator.Vibrate(Pattern); - - -* **patrón**: secuencia de duraciones (en milisegundos) que desea activar o desactivar el vibrador. *(Matriz de números)* - -#### Ejemplo - - Vibrar durante 1 segundo / / esperar 1 segundo / / vibrar durante 3 segundos / / esperar 1 segundo / / vibrar por 5 segundos navigator.vibrate ([1000, 1000, 3000, 1000, 5000]); - - -#### Windows Phone 8 rarezas - -* Vibrate(Pattern) caídas detrás en vibración con duración predeterminada - -### Cancelar vibración (no soportada en iOS) - -Inmediatamente se cancela cualquier vibración actualmente en ejecución. - - Navigator.Vibrate(0) - - -o - - Navigator.Vibrate([]) - - -o - - Navigator.Vibrate([0]) - - -Pasando en un parámetro de 0, una matriz vacía o una matriz con un elemento de valor 0 se cancelará cualquier vibraciones. - -## *Notification.Vibrate (obsoleto) - -Vibra el dispositivo para una cantidad dada de tiempo. - - Navigator.Notification.Vibrate(Time) - - -* **tiempo**: milisegundos a vibrar el dispositivo. *(Número)* - -### Ejemplo - - Vibrar por 2.5 segundos navigator.notification.vibrate(2500); - - -### iOS rarezas - -* **tiempo**: ignora el tiempo especificado y vibra durante un tiempo preestablecido. - - Navigator.Notification.Vibrate(); - Navigator.Notification.Vibrate(2500); 2500 se omite - - -## *Notification.vibrateWithPattern (obsoleto) - -Vibra el dispositivo con un patrón determinado. - - navigator.notification.vibrateWithPattern (patrón de repetición) - - -* **patrón**: secuencia de duraciones (en milisegundos) que desea activar o desactivar el vibrador. *(Matriz de números)* -* **repito**: índice opcional en la matriz de patrón en el cual comenzar repitiendo (se repite hasta que se cancele), o -1 para la no repetición (por defecto). *(Número)* - -### Ejemplo - - Inmediatamente comenzar a vibrar / / vibrar de 100ms, / / espera a 100ms, / / vibrar de 200ms, / / esperar 100ms, / / vibrar para 400ms, / / esperar 100ms, / / vibrar para 800ms, / / (no repetir) navigator.notification.vibrateWithPattern ([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *Notification.cancelVibration (obsoleto) - -Inmediatamente se cancela cualquier vibración actualmente en ejecución. - - navigator.notification.cancelVibration() - - -* Nota: debido a la alineación con la especificación del w3c, los métodos favoritos a ser eliminados diff --git a/doc/fr/README.md b/doc/fr/README.md deleted file mode 100644 index 28506e5..0000000 --- a/doc/fr/README.md +++ /dev/null @@ -1,171 +0,0 @@ - - -# cordova-plugin-vibration - -[![Build Status](https://travis-ci.org/apache/cordova-plugin-vibration.svg)](https://travis-ci.org/apache/cordova-plugin-vibration) - -Ce plugin s'aligne avec le W3C vibration spécification http://www.w3.org/TR/vibration/ - -Ce plugin permet de vibrer l'appareil. - -Ce plugin définit notamment des objets globaux`navigator.vibrate`. - -Bien que dans la portée globale, ils ne sont pas disponibles jusqu'après la `deviceready` événement. - - document.addEventListener (« deviceready », onDeviceReady, false) ; - function onDeviceReady() {console.log(navigator.vibrate);} - - -## Installation - - cordova plugin add cordova-plugin-vibration - - -## Plates-formes supportées - -navigator.vibrate, -navigator.notification.vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 and 8 - Windows (Windows Phone 8.1 devices only) - -navigator.notification.vibrateWithPattern -navigator.notification.cancelVibration - Android - Windows Phone 8 - Windows (Windows Phone 8.1 devices only) - -## vibrer (recommandée) - -Cette fonction a trois différentes fonctionnalités basées sur les paramètres passés à elle. - -### Norme vibrer - -Vibre l'appareil pendant un certain temps. - - Navigator.VIBRATE(Time) - - -ou - - Navigator.VIBRATE([time]) - - --**temps**: millisecondes à vibrer l'appareil. *(Nombre)* - -#### Exemple - - Vibrer pour 3 secondes navigator.vibrate(3000) ; - - Vibrer pour 3 secondes navigator.vibrate([3000]) ; - - -#### Notes au sujet d'iOS - - * **temps**: ne tient pas compte de la durée spécifiée et vibre pendant un temps prédéterminé. - - navigator.vibrate(3000); // 3000 is ignored - -#### Windows et les bizarreries de Blackberry - - * **temps**: temps Max est 5000ms (5 s) et heure min est de 1 ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### Vibrer avec un motif (Android et Windows uniquement) - -Vibre l'appareil avec un motif donné - - Navigator.VIBRATE(Pattern) ; - - - * **modèle**: séquence de la durée (en millisecondes) pour lequel activer ou désactiver le vibreur. *(Tableau de nombres)* - -#### Exemple - - Vibreur pendant 1 seconde / / attendre 1 seconde / / vibrer pendant 3 secondes / / attendre 1 seconde / / vibrer pour 5 secondes navigator.vibrate ([1000, 1000, 3000, 1000, 5000]) ; - - -#### Notes au sujet de Windows Phone 8 - - * chutes de VIBRATE(Pattern) retour à vibrent avec durée par défaut - -#### Bizarreries de Windows - - * chutes de VIBRATE(Pattern) retour à vibrent avec durée par défaut - -### Annuler les vibrations (ne pas de prise en charge d'iOS) - -Immédiatement annule des vibrations en cours d'exécution. - - Navigator.VIBRATE(0) - - -ou - - Navigator.VIBRATE([]) - - -ou - - Navigator.VIBRATE([0]) - - -En passant un paramètre de 0, un tableau vide, ou un tableau contenant un seul élément de valeur 0 annulera toute vibration. - -## *notification.VIBRATE (obsolète) - -Vibre l'appareil pendant un certain temps. - - Navigator.notification.VIBRATE(Time) - - - * **temps**: millisecondes à vibrer l'appareil. *(Nombre)* - -### Exemple - - Vibrer pour 2,5 secondes navigator.notification.vibrate(2500) ; - - -### Notes au sujet d'iOS - - * **temps**: ne tient pas compte de la durée spécifiée et vibre pendant un temps prédéterminé. - - Navigator.notification.VIBRATE() ; - Navigator.notification.VIBRATE(2500) ; 2500 est ignoré - - -## *notification.vibrateWithPattern (obsolète) - -Vibre l'appareil avec un modèle donné. - - navigator.notification.vibrateWithPattern (motif) - - - * **modèle**: séquence de la durée (en millisecondes) pour lequel activer ou désactiver le vibreur. *(Tableau de nombres)* - * **répéter**: optionnel index dans le tableau de configuration à laquelle commencer à répéter (répétera jusqu'à annulation), ou -1 pour aucune répétition (par défaut). *(Nombre)* - -### Exemple - - Commencent immédiatement à vibrer / / vibrer de 100ms, / / attendre 100ms, / / vibrer pour 200ms, / / attendre 100ms, / / vibrer pour 400ms, / / attendre 100ms, / / vibrer pour 800ms, / / (ne pas répéter) navigator.notification.vibrateWithPattern ([0, 100, 100, 200, 100, 400, 100, 800]) ; - - -## *notification.cancelVibration (obsolète) - -Immédiatement annule des vibrations en cours d'exécution. - - navigator.notification.cancelVibration() - - -* Remarque : en raison de l'alignement avec les spécifications w3c, les méthodes étoilées seront progressivement \ No newline at end of file diff --git a/doc/fr/index.md b/doc/fr/index.md deleted file mode 100644 index 51ee1fb..0000000 --- a/doc/fr/index.md +++ /dev/null @@ -1,165 +0,0 @@ - - -# cordova-plugin-vibration - -Ce plugin s'aligne avec le W3C vibration spécification http://www.w3.org/TR/vibration/ - -Ce plugin permet de vibrer l'appareil. - -Ce plugin définit notamment des objets globaux`navigator.vibrate`. - -Bien que dans la portée globale, ils ne sont pas disponibles jusqu'après la `deviceready` événement. - - document.addEventListener (« deviceready », onDeviceReady, false) ; - function onDeviceReady() {console.log(navigator.vibrate);} - - -## Installation - - Cordova plugin ajouter cordova-plugin-vibration - - -## Plates-formes prises en charge - -Navigator.VIBRATE, -Navigator.notification.VIBRATE - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 et 8 - -navigator.notification.vibrateWithPattern, -navigator.notification.cancelVibration - Android - Windows Phone 8 - -## vibrer (recommandée) - -Cette fonction a trois différentes fonctionnalités basées sur les paramètres passés à elle. - -### Norme vibrer - -Vibre l'appareil pendant un certain temps. - - Navigator.VIBRATE(Time) - - -ou - - Navigator.VIBRATE([time]) - - --**temps**: millisecondes à vibrer l'appareil. *(Nombre)* - -#### Exemple - - Vibrer pour 3 secondes navigator.vibrate(3000) ; - - Vibrer pour 3 secondes navigator.vibrate([3000]) ; - - -#### iOS Quirks - -* **temps**: ne tient pas compte de la durée spécifiée et vibre pendant un temps prédéterminé. - - navigator.vibrate(3000); // 3000 is ignored - -#### Windows et les bizarreries de Blackberry - -* **temps**: temps Max est 5000ms (5 s) et heure min est de 1 ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### Vibrer avec un motif (Android et Windows uniquement) - -Vibre l'appareil avec un motif donné - - Navigator.VIBRATE(Pattern) ; - - -* **modèle**: séquence de la durée (en millisecondes) pour lequel activer ou désactiver le vibreur. *(Tableau de nombres)* - -#### Exemple - - Vibreur pendant 1 seconde / / attendre 1 seconde / / vibrer pendant 3 secondes / / attendre 1 seconde / / vibrer pour 5 secondes navigator.vibrate ([1000, 1000, 3000, 1000, 5000]) ; - - -#### Windows Phone 8 Quirks - -* chutes de VIBRATE(Pattern) retour à vibrent avec durée par défaut - -### Annuler les vibrations (ne pas de prise en charge d'iOS) - -Immédiatement annule des vibrations en cours d'exécution. - - Navigator.VIBRATE(0) - - -ou - - Navigator.VIBRATE([]) - - -ou - - Navigator.VIBRATE([0]) - - -En passant un paramètre de 0, un tableau vide, ou un tableau contenant un seul élément de valeur 0 annulera toute vibration. - -## *notification.VIBRATE (obsolète) - -Vibre l'appareil pendant un certain temps. - - Navigator.notification.VIBRATE(Time) - - -* **temps**: millisecondes à vibrer l'appareil. *(Nombre)* - -### Exemple - - Vibrer pour 2,5 secondes navigator.notification.vibrate(2500) ; - - -### iOS Quirks - -* **temps**: ne tient pas compte de la durée spécifiée et vibre pendant un temps prédéterminé. - - Navigator.notification.VIBRATE() ; - Navigator.notification.VIBRATE(2500) ; 2500 est ignoré - - -## *notification.vibrateWithPattern (obsolète) - -Vibre l'appareil avec un modèle donné. - - navigator.notification.vibrateWithPattern (motif) - - -* **modèle**: séquence de la durée (en millisecondes) pour lequel activer ou désactiver le vibreur. *(Tableau de nombres)* -* **répéter**: optionnel index dans le tableau de configuration à laquelle commencer à répéter (répétera jusqu'à annulation), ou -1 pour aucune répétition (par défaut). *(Nombre)* - -### Exemple - - Commencent immédiatement à vibrer / / vibrer de 100ms, / / attendre 100ms, / / vibrer pour 200ms, / / attendre 100ms, / / vibrer pour 400ms, / / attendre 100ms, / / vibrer pour 800ms, / / (ne pas répéter) navigator.notification.vibrateWithPattern ([0, 100, 100, 200, 100, 400, 100, 800]) ; - - -## *notification.cancelVibration (obsolète) - -Immédiatement annule des vibrations en cours d'exécution. - - navigator.notification.cancelVibration() - - -* Remarque : en raison de l'alignement avec les spécifications w3c, les méthodes étoilées seront progressivement diff --git a/doc/it/README.md b/doc/it/README.md deleted file mode 100644 index 49ac31c..0000000 --- a/doc/it/README.md +++ /dev/null @@ -1,190 +0,0 @@ - - -# cordova-plugin-vibration - -[![Build Status](https://travis-ci.org/apache/cordova-plugin-vibration.svg)](https://travis-ci.org/apache/cordova-plugin-vibration) - -Questo plugin si allinea con il W3C vibrazione specifica http://www.w3.org/TR/vibration/ - -Questo plugin consente di vibrare il dispositivo. - -Questo plugin definisce gli oggetti globali, tra cui `navigator.vibrate`. - -Anche se in ambito globale, non sono disponibili fino a dopo l'evento `deviceready`. - - document.addEventListener("deviceready", onDeviceReady, false); - function onDeviceReady() { - console.log(navigator.vibrate); - } - - -## Installazione - - cordova plugin add cordova-plugin-vibration - - -## Piattaforme supportate - -navigator.vibrate, -navigator.notification.vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 and 8 - Windows (Windows Phone 8.1 devices only) - -navigator.notification.vibrateWithPattern -navigator.notification.cancelVibration - Android - Windows Phone 8 - Windows (Windows Phone 8.1 devices only) - -## vibrare (consigliato) - -Questa funzione ha tre differenti funzionalità basate su parametri passati ad esso. - -### Standard vibrare - -Vibra il dispositivo per un determinato periodo di tempo. - - navigator.vibrate(time) - - -o - - navigator.vibrate([time]) - - --**time**: millisecondi a vibrare il dispositivo. *(Numero)* - -#### Esempio - - // Vibrate for 3 seconds - navigator.vibrate(3000); - - // Vibrate for 3 seconds - navigator.vibrate([3000]); - - -#### iOS stranezze - - * **time**: ignora il tempo specificato e vibra per un tempo pre-impostato. - - navigator.vibrate(3000); // 3000 is ignored - -#### Windows e stranezze di Blackberry - - * **time**: tempo Max 5000ms (5s) edè min tempo di 1ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### Vibrare con un pattern (Android e solo per Windows) - -Vibra il dispositivo con un determinato modello - - navigator.vibrate(pattern); - - - * **modello**: sequenza di durate (in millisecondi) per il quale attivare o disattivare il vibratore. *(Matrice di numeri)* - -#### Esempio - - // Vibrate for 1 second - // Wait for 1 second - // Vibrate for 3 seconds - // Wait for 1 second - // Vibrate for 5 seconds - navigator.vibrate([1000, 1000, 3000, 1000, 5000]); - - -#### Windows Phone 8 stranezze - - * vibrate(pattern) cade indietro a vibrano con durata predefinita - -#### Stranezze di Windows - - * vibrate(pattern) cade indietro a vibrano con durata predefinita - -### Annullare le vibrazioni (non supportata in iOS) - -Annulla immediatamente qualsiasi vibrazione attualmente in esecuzione. - - navigator.vibrate(0) - - -o - - navigator.vibrate([]) - - -o - - navigator.vibrate([0]) - - -Passa un parametro 0, matrice vuota o una matrice con un elemento di valore 0 annullerà eventuali vibrazioni. - -## *notification.vibrate (deprecated) - -Vibra il dispositivo per un determinato periodo di tempo. - - navigator.notification.vibrate(time) - - - * **time**: millisecondi a vibrare il dispositivo. *(Numero)* - -### Esempio - - // Vibrate for 2.5 seconds - navigator.notification.vibrate(2500); - - -### iOS stranezze - - * **time**: ignora il tempo specificato e vibra per un tempo pre-impostato. - - navigator.notification.vibrate(); - navigator.notification.vibrate(2500); // 2500 is ignored - - -## *Notification.vibrateWithPattern (obsoleto) - -Vibra il dispositivo con un determinato modello. - - navigator.notification.vibrateWithPattern(pattern, repeat) - - - * **modello**: sequenza di durate (in millisecondi) per il quale attivare o disattivare il vibratore. *(Matrice di numeri)* - * **repeat**: opzionale indice nell'array modello presso cui iniziare ripetendo (ripeterà finché non annullato), o -1 per nessuna ripetizione (impostazione predefinita). *(Numero)* - -### Esempio - - // Immediately start vibrating - // vibrate for 100ms, - // wait for 100ms, - // vibrate for 200ms, - // wait for 100ms, - // vibrate for 400ms, - // wait for 100ms, - // vibrate for 800ms, - // (do not repeat) - navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *Notification.cancelVibration (obsoleto) - -Annulla immediatamente qualsiasi vibrazione attualmente in esecuzione. - - navigator.notification.cancelVibration() - - -* Nota - a causa di allineamento con le specifiche w3c, saranno essere ritirati i metodi speciali \ No newline at end of file diff --git a/doc/it/index.md b/doc/it/index.md deleted file mode 100644 index da8840a..0000000 --- a/doc/it/index.md +++ /dev/null @@ -1,184 +0,0 @@ - - -# cordova-plugin-vibration - -Questo plugin si allinea con il W3C vibrazione specifica http://www.w3.org/TR/vibration/ - -Questo plugin consente di vibrare il dispositivo. - -Questo plugin definisce gli oggetti globali, tra cui `navigator.vibrate`. - -Anche se in ambito globale, non sono disponibili fino a dopo l'evento `deviceready`. - - document.addEventListener("deviceready", onDeviceReady, false); - function onDeviceReady() { - console.log(navigator.vibrate); - } - - -## Installazione - - cordova plugin add cordova-plugin-vibration - - -## Piattaforme supportate - -navigator.vibrate, -navigator.notification.vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 and 8 - -navigator.notification.vibrateWithPattern, -navigator.notification.cancelVibration - Android - Windows Phone 8 - -## vibrare (consigliato) - -Questa funzione ha tre differenti funzionalità basate su parametri passati ad esso. - -### Standard vibrare - -Vibra il dispositivo per un determinato periodo di tempo. - - navigator.vibrate(time) - - -o - - navigator.vibrate([time]) - - --**time**: millisecondi a vibrare il dispositivo. *(Numero)* - -#### Esempio - - // Vibrate for 3 seconds - navigator.vibrate(3000); - - // Vibrate for 3 seconds - navigator.vibrate([3000]); - - -#### iOS stranezze - -* **time**: ignora il tempo specificato e vibra per un tempo pre-impostato. - - navigator.vibrate(3000); // 3000 is ignored - -#### Windows e stranezze di Blackberry - -* **time**: tempo Max 5000ms (5s) edè min tempo di 1ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### Vibrare con un pattern (Android e solo per Windows) - -Vibra il dispositivo con un determinato modello - - navigator.vibrate(pattern); - - -* **modello**: sequenza di durate (in millisecondi) per il quale attivare o disattivare il vibratore. *(Matrice di numeri)* - -#### Esempio - - // Vibrate for 1 second - // Wait for 1 second - // Vibrate for 3 seconds - // Wait for 1 second - // Vibrate for 5 seconds - navigator.vibrate([1000, 1000, 3000, 1000, 5000]); - - -#### Windows Phone 8 stranezze - -* vibrate(pattern) cade indietro a vibrano con durata predefinita - -### Annullare le vibrazioni (non supportata in iOS) - -Annulla immediatamente qualsiasi vibrazione attualmente in esecuzione. - - navigator.vibrate(0) - - -o - - navigator.vibrate([]) - - -o - - navigator.vibrate([0]) - - -Passa un parametro 0, matrice vuota o una matrice con un elemento di valore 0 annullerà eventuali vibrazioni. - -## *notification.vibrate (deprecated) - -Vibra il dispositivo per un determinato periodo di tempo. - - navigator.notification.vibrate(time) - - -* **time**: millisecondi a vibrare il dispositivo. *(Numero)* - -### Esempio - - // Vibrate for 2.5 seconds - navigator.notification.vibrate(2500); - - -### iOS stranezze - -* **time**: ignora il tempo specificato e vibra per un tempo pre-impostato. - - navigator.notification.vibrate(); - navigator.notification.vibrate(2500); // 2500 is ignored - - -## *Notification.vibrateWithPattern (obsoleto) - -Vibra il dispositivo con un determinato modello. - - navigator.notification.vibrateWithPattern(pattern, repeat) - - -* **modello**: sequenza di durate (in millisecondi) per il quale attivare o disattivare il vibratore. *(Matrice di numeri)* -* **repeat**: opzionale indice nell'array modello presso cui iniziare ripetendo (ripeterà finché non annullato), o -1 per nessuna ripetizione (impostazione predefinita). *(Numero)* - -### Esempio - - // Immediately start vibrating - // vibrate for 100ms, - // wait for 100ms, - // vibrate for 200ms, - // wait for 100ms, - // vibrate for 400ms, - // wait for 100ms, - // vibrate for 800ms, - // (do not repeat) - navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *Notification.cancelVibration (obsoleto) - -Annulla immediatamente qualsiasi vibrazione attualmente in esecuzione. - - navigator.notification.cancelVibration() - - -* Nota - a causa di allineamento con le specifiche w3c, saranno essere ritirati i metodi speciali diff --git a/doc/ja/README.md b/doc/ja/README.md deleted file mode 100644 index 8eedd51..0000000 --- a/doc/ja/README.md +++ /dev/null @@ -1,190 +0,0 @@ - - -# cordova-plugin-vibration - -[![Build Status](https://travis-ci.org/apache/cordova-plugin-vibration.svg)](https://travis-ci.org/apache/cordova-plugin-vibration) - -このプラグインに準拠 W3C 振動仕様 http://www.w3.org/TR/vibration/ - -このプラグインは、デバイスを振動させる方法を提供します。 - -このプラグインは `navigator.vibrate` などのグローバル オブジェクトを定義します. - -グローバル スコープでは使用できませんまで `deviceready` イベントの後です。 - - document.addEventListener("deviceready", onDeviceReady, false); - function onDeviceReady() { - console.log(navigator.vibrate); - } - - -## インストール - - cordova plugin add cordova-plugin-vibration - - -## サポートされているプラットフォーム - -navigator.vibrate, -navigator.notification.vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 and 8 - Windows (Windows Phone 8.1 devices only) - -navigator.notification.vibrateWithPattern -navigator.notification.cancelVibration - Android - Windows Phone 8 - Windows (Windows Phone 8.1 devices only) - -## 振動 (推奨) - -この関数は、渡されたパラメーターに基づいて 3 つのさまざまな機能。 - -### 標準を振動します。 - -一定の時間のため、デバイスが振動します。 - - navigator.vibrate(time) - - -または - - navigator.vibrate([time]) - - --**time**: ミリ秒、デバイスを振動させる。*(数)* - -#### 例 - - // Vibrate for 3 seconds - navigator.vibrate(3000); - - // Vibrate for 3 seconds - navigator.vibrate([3000]); - - -#### iOS の癖 - - * **時間**: 指定された時間を無視し、時間の事前に設定された量のために振動します。 - - navigator.vibrate(3000); // 3000 is ignored - -#### Windows とブラックベリー癖 - - * **時間**: 5000 (5 秒) は、最大時間と最小時間は 1 ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### (人造人間と Windows のみ) パターンで振動します。 - -特定のパターンを持つデバイスが振動します。 - - navigator.vibrate(pattern); - - - * **パターン**: シーケンスの継続時間 (ミリ秒単位) をオンまたはオフ、バイブします。*(数字の配列)* - -#### 例 - - // Vibrate for 1 second - // Wait for 1 second - // Vibrate for 3 seconds - // Wait for 1 second - // Vibrate for 5 seconds - navigator.vibrate([1000, 1000, 3000, 1000, 5000]); - - -#### Windows Phone 8 癖 - - * 既定の期間の振動で戻る vibrate(pattern) の滝 - -#### Windows の癖 - - * 既定の期間の振動で戻る vibrate(pattern) の滝 - -### [キャンセル] 振動 (iOS ではサポートされていません) - -すぐに、現在実行中の振動をキャンセルします。 - - navigator.vibrate(0) - - -または - - navigator.vibrate([]) - - -または - - navigator.vibrate([0]) - - -0 のパラメーターを渡して、空の配列、または 0 の値の 1 つの要素を持つ配列は任意振動がキャンセルされます。 - -## *notification.vibrate (非推奨) - -一定の時間のため、デバイスが振動します。 - - navigator.notification.vibrate(time) - - - * **time**: ミリ秒、デバイスを振動させる。*(数)* - -### 例 - - // Vibrate for 2.5 seconds - navigator.notification.vibrate(2500); - - -### iOS の癖 - - * **時間**: 指定された時間を無視し、時間の事前に設定された量のために振動します。 - - navigator.notification.vibrate(); - navigator.notification.vibrate(2500); // 2500 is ignored - - -## *notification.vibrateWithPattern (非推奨) - -特定のパターンを持つデバイスが振動します。 - - navigator.notification.vibrateWithPattern(pattern, repeat) - - - * **パターン**: シーケンスの継続時間 (ミリ秒単位) をオンまたはオフ、バイブします。*(数字の配列)* - * **repeat**: 省略可能な配列のインデックスのパターン (でしょう) を繰り返す取り消されるまで、繰り返しを開始するまたは反復なし (既定値) の場合は-1。*(数)* - -### 例 - - // Immediately start vibrating - // vibrate for 100ms, - // wait for 100ms, - // vibrate for 200ms, - // wait for 100ms, - // vibrate for 400ms, - // wait for 100ms, - // vibrate for 800ms, - // (do not repeat) - navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *notification.cancelVibration (非推奨) - -すぐに、現在実行中の振動をキャンセルします。 - - navigator.notification.cancelVibration() - - -* 注 - w3c の仕様を配置、ため主演メソッドがフェーズ アウトされます。 \ No newline at end of file diff --git a/doc/ja/index.md b/doc/ja/index.md deleted file mode 100644 index 0641a0a..0000000 --- a/doc/ja/index.md +++ /dev/null @@ -1,184 +0,0 @@ - - -# cordova-plugin-vibration - -このプラグインに準拠 W3C 振動仕様 http://www.w3.org/TR/vibration/ - -このプラグインは、デバイスを振動させる方法を提供します。 - -このプラグインは `navigator.vibrate` などのグローバル オブジェクトを定義します. - -グローバル スコープでは使用できませんまで `deviceready` イベントの後です。 - - document.addEventListener("deviceready", onDeviceReady, false); - function onDeviceReady() { - console.log(navigator.vibrate); - } - - -## インストール - - cordova plugin add cordova-plugin-vibration - - -## サポートされているプラットフォーム - -navigator.vibrate, -navigator.notification.vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 and 8 - -navigator.notification.vibrateWithPattern, -navigator.notification.cancelVibration - Android - Windows Phone 8 - -## 振動 (推奨) - -この関数は、渡されたパラメーターに基づいて 3 つのさまざまな機能。 - -### 標準を振動します。 - -一定の時間のため、デバイスが振動します。 - - navigator.vibrate(time) - - -または - - navigator.vibrate([time]) - - --**time**: ミリ秒、デバイスを振動させる。*(数)* - -#### 例 - - // Vibrate for 3 seconds - navigator.vibrate(3000); - - // Vibrate for 3 seconds - navigator.vibrate([3000]); - - -#### iOS の癖 - -* **時間**: 指定された時間を無視し、時間の事前に設定された量のために振動します。 - - navigator.vibrate(3000); // 3000 is ignored - -#### Windows とブラックベリー癖 - -* **時間**: 5000 (5 秒) は、最大時間と最小時間は 1 ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### (人造人間と Windows のみ) パターンで振動します。 - -特定のパターンを持つデバイスが振動します。 - - navigator.vibrate(pattern); - - -* **パターン**: シーケンスの継続時間 (ミリ秒単位) をオンまたはオフ、バイブします。*(数字の配列)* - -#### 例 - - // Vibrate for 1 second - // Wait for 1 second - // Vibrate for 3 seconds - // Wait for 1 second - // Vibrate for 5 seconds - navigator.vibrate([1000, 1000, 3000, 1000, 5000]); - - -#### Windows Phone 8 癖 - -* 既定の期間の振動で戻る vibrate(pattern) の滝 - -### [キャンセル] 振動 (iOS ではサポートされていません) - -すぐに、現在実行中の振動をキャンセルします。 - - navigator.vibrate(0) - - -または - - navigator.vibrate([]) - - -または - - navigator.vibrate([0]) - - -0 のパラメーターを渡して、空の配列、または 0 の値の 1 つの要素を持つ配列は任意振動がキャンセルされます。 - -## *notification.vibrate (非推奨) - -一定の時間のため、デバイスが振動します。 - - navigator.notification.vibrate(time) - - -* **time**: ミリ秒、デバイスを振動させる。*(数)* - -### 例 - - // Vibrate for 2.5 seconds - navigator.notification.vibrate(2500); - - -### iOS の癖 - -* **時間**: 指定された時間を無視し、時間の事前に設定された量のために振動します。 - - navigator.notification.vibrate(); - navigator.notification.vibrate(2500); // 2500 is ignored - - -## *notification.vibrateWithPattern (非推奨) - -特定のパターンを持つデバイスが振動します。 - - navigator.notification.vibrateWithPattern(pattern, repeat) - - -* **pattern**: シーケンスの継続時間 (ミリ秒単位) をオンまたはオフ、バイブします。*(数字の配列)* -* **repeat**: 省略可能な配列のインデックスのパターン (でしょう) を繰り返す取り消されるまで、繰り返しを開始するまたは反復なし (既定値) の場合は-1。*(数)* - -### 例 - - // Immediately start vibrating - // vibrate for 100ms, - // wait for 100ms, - // vibrate for 200ms, - // wait for 100ms, - // vibrate for 400ms, - // wait for 100ms, - // vibrate for 800ms, - // (do not repeat) - navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *notification.cancelVibration (非推奨) - -すぐに、現在実行中の振動をキャンセルします。 - - navigator.notification.cancelVibration() - - -* 注 - w3c の仕様を配置、ため主演メソッドがフェーズ アウトされます。 diff --git a/doc/ko/README.md b/doc/ko/README.md deleted file mode 100644 index 5476fda..0000000 --- a/doc/ko/README.md +++ /dev/null @@ -1,190 +0,0 @@ - - -# cordova-plugin-vibration - -[![Build Status](https://travis-ci.org/apache/cordova-plugin-vibration.svg)](https://travis-ci.org/apache/cordova-plugin-vibration) - -이 플러그인에 W3C 진동 사양 http://www.w3.org/TR/vibration/ 정렬 - -이 플러그인에는 장치를 진동 하는 방법을 제공 합니다. - -이 플러그인 `navigator.vibrate`를 포함 하는 전역 개체를 정의 합니다.. - -전역 범위에서 그들은 제공 되지 않습니다 때까지 `deviceready` 이벤트 후. - - document.addEventListener("deviceready", onDeviceReady, false); - function onDeviceReady() { - console.log(navigator.vibrate); - } - - -## 설치 - - cordova plugin add cordova-plugin-vibration - - -## 지원 되는 플랫폼 - -navigator.vibrate, -navigator.notification.vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 and 8 - Windows (Windows Phone 8.1 devices only) - -navigator.notification.vibrateWithPattern -navigator.notification.cancelVibration - Android - Windows Phone 8 - Windows (Windows Phone 8.1 devices only) - -## 진동 (권장) - -이 함수는 전달 된 매개 변수에 따라 세 가지 다른 기능. - -### 기준 진동 - -주어진 시간 동안 장치를 진동. - - navigator.vibrate(time) - - -또는 - - navigator.vibrate([time]) - - --**time**: 진동 장치 (밀리초)입니다. *(수)* - -#### 예를 들어 - - // Vibrate for 3 seconds - navigator.vibrate(3000); - - // Vibrate for 3 seconds - navigator.vibrate([3000]); - - -#### iOS 단점 - - * **시간**: 지정 된 시간을 무시 하 고 미리 설정 된 시간 동안 진동. - - navigator.vibrate(3000); // 3000 is ignored - -#### 윈도 즈와 블랙베리 단점 - - * **시간**: 최대 시간은 2000ms (5s) 이며 최소 시간 1ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### (안 드 로이드와 Windows에만 해당) 패턴으로 진동 - -지정 된 패턴으로 장치를 진동 - - navigator.vibrate(pattern); - - - * **패턴**:의 기간 (밀리초)에서 진동을 켜거나 끌 수 있는 순서. *(숫자의 배열)* - -#### 예를 들어 - - // Vibrate for 1 second - // Wait for 1 second - // Vibrate for 3 seconds - // Wait for 1 second - // Vibrate for 5 seconds - navigator.vibrate([1000, 1000, 3000, 1000, 5000]); - - -#### Windows Phone 8 단점 - - * vibrate(pattern) 폭포 다시에 기본 기간 진동 - -#### 윈도우 특수 - - * vibrate(pattern) 폭포 다시에 기본 기간 진동 - -### 진동 (iOS에서 지원 되지 않음) 취소 - -즉시 모든 현재 실행 중인 진동을 취소합니다. - - navigator.vibrate(0) - - -또는 - - navigator.vibrate([]) - - -또는 - - navigator.vibrate([0]) - - -0의 매개 변수 전달, 빈 배열, 또는 0 값의 한 요소 배열은 어떤 진동을 취소할 것 이다. - -## *notification.vibrate (사용 되지 않음) - -주어진 시간 동안 장치를 진동. - - navigator.notification.vibrate(time) - - - * **time**: 진동 장치 (밀리초)입니다. *(수)* - -### 예를 들어 - - // Vibrate for 2.5 seconds - navigator.notification.vibrate(2500); - - -### iOS 단점 - - * **시간**: 지정 된 시간을 무시 하 고 미리 설정 된 시간 동안 진동. - - navigator.notification.vibrate(); - navigator.notification.vibrate(2500); // 2500 is ignored - - -## *notification.vibrateWithPattern (사용 되지 않음) - -지정 된 패턴으로 장치 진동. - - navigator.notification.vibrateWithPattern(pattern, repeat) - - - * **패턴**:의 기간 (밀리초)에서 진동을 켜거나 끌 수 있는 순서. *(숫자의 배열)* - * **repeat**: 반복 (취소 될 때까지 반복 됩니다), 시작 하는 또는-1 (기본값) 없는 반복에 대 한 패턴 배열에 선택적 인덱스. *(수)* - -### 예를 들어 - - // Immediately start vibrating - // vibrate for 100ms, - // wait for 100ms, - // vibrate for 200ms, - // wait for 100ms, - // vibrate for 400ms, - // wait for 100ms, - // vibrate for 800ms, - // (do not repeat) - navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *notification.cancelVibration (사용 되지 않음) - -즉시 모든 현재 실행 중인 진동을 취소합니다. - - navigator.notification.cancelVibration() - - -* 참고-때문에 w3c 사양 가진 줄 맞춤, 별표 메서드 밖으로 단계별로 됩니다. \ No newline at end of file diff --git a/doc/ko/index.md b/doc/ko/index.md deleted file mode 100644 index b4e2fa5..0000000 --- a/doc/ko/index.md +++ /dev/null @@ -1,184 +0,0 @@ - - -# cordova-plugin-vibration - -이 플러그인에 W3C 진동 사양 http://www.w3.org/TR/vibration/ 정렬 - -이 플러그인에는 장치를 진동 하는 방법을 제공 합니다. - -이 플러그인 `navigator.vibrate`를 포함 하는 전역 개체를 정의 합니다.. - -전역 범위에서 그들은 제공 되지 않습니다 때까지 `deviceready` 이벤트 후. - - document.addEventListener("deviceready", onDeviceReady, false); - function onDeviceReady() { - console.log(navigator.vibrate); - } - - -## 설치 - - cordova plugin add cordova-plugin-vibration - - -## 지원 되는 플랫폼 - -navigator.vibrate, -navigator.notification.vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 and 8 - -navigator.notification.vibrateWithPattern, -navigator.notification.cancelVibration - Android - Windows Phone 8 - -## vibrate (recommended) - -이 함수는 전달 된 매개 변수에 따라 세 가지 다른 기능. - -### 기준 진동 - -주어진 시간 동안 장치를 진동. - - navigator.vibrate(time) - - -또는 - - navigator.vibrate([time]) - - --**time**: 진동 장치 (밀리초)입니다. *(수)* - -#### 예를 들어 - - // Vibrate for 3 seconds - navigator.vibrate(3000); - - // Vibrate for 3 seconds - navigator.vibrate([3000]); - - -#### iOS 단점 - -* **시간**: 지정 된 시간을 무시 하 고 미리 설정 된 시간 동안 진동. - - navigator.vibrate(3000); // 3000 is ignored - -#### 윈도 즈와 블랙베리 단점 - -* **시간**: 최대 시간은 2000ms (5s) 이며 최소 시간 1ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### (안 드 로이드와 Windows에만 해당) 패턴으로 진동 - -지정 된 패턴으로 장치를 진동 - - navigator.vibrate(pattern); - - -* **패턴**:의 기간 (밀리초)에서 진동을 켜거나 끌 수 있는 순서. *(숫자의 배열)* - -#### 예를 들어 - - // Vibrate for 1 second - // Wait for 1 second - // Vibrate for 3 seconds - // Wait for 1 second - // Vibrate for 5 seconds - navigator.vibrate([1000, 1000, 3000, 1000, 5000]); - - -#### Windows Phone 8 단점 - -* vibrate(pattern) 폭포 다시에 기본 기간 진동 - -### 진동 (iOS에서 지원 되지 않음) 취소 - -즉시 모든 현재 실행 중인 진동을 취소합니다. - - navigator.vibrate(0) - - -또는 - - navigator.vibrate([]) - - -또는 - - navigator.vibrate([0]) - - -0의 매개 변수 전달, 빈 배열, 또는 0 값의 한 요소 배열은 어떤 진동을 취소할 것 이다. - -## *notification.vibrate (사용 되지 않음) - -주어진 시간 동안 장치를 진동. - - navigator.notification.vibrate(time) - - -* **time**: 진동 장치 (밀리초)입니다. *(수)* - -### 예를 들어 - - // Vibrate for 2.5 seconds - navigator.notification.vibrate(2500); - - -### iOS 단점 - -* **시간**: 지정 된 시간을 무시 하 고 미리 설정 된 시간 동안 진동. - - navigator.notification.vibrate(); - navigator.notification.vibrate(2500); // 2500 is ignored - - -## *notification.vibrateWithPattern (사용 되지 않음) - -지정 된 패턴으로 장치 진동. - - navigator.notification.vibrateWithPattern(pattern, repeat) - - -* **pattern**:의 기간 (밀리초)에서 진동을 켜거나 끌 수 있는 순서. *(숫자의 배열)* -* **repeat**: 반복 (취소 될 때까지 반복 됩니다), 시작 하는 또는-1 (기본값) 없는 반복에 대 한 패턴 배열에 선택적 인덱스. *(수)* - -### 예를 들어 - - // Immediately start vibrating - // vibrate for 100ms, - // wait for 100ms, - // vibrate for 200ms, - // wait for 100ms, - // vibrate for 400ms, - // wait for 100ms, - // vibrate for 800ms, - // (do not repeat) - navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *notification.cancelVibration (사용 되지 않음) - -즉시 모든 현재 실행 중인 진동을 취소합니다. - - navigator.notification.cancelVibration() - - -* 참고-때문에 w3c 사양 가진 줄 맞춤, 별표 메서드 밖으로 단계별로 됩니다. diff --git a/doc/pl/README.md b/doc/pl/README.md deleted file mode 100644 index 26f4aeb..0000000 --- a/doc/pl/README.md +++ /dev/null @@ -1,190 +0,0 @@ - - -# cordova-plugin-vibration - -[![Build Status](https://travis-ci.org/apache/cordova-plugin-vibration.svg)](https://travis-ci.org/apache/cordova-plugin-vibration) - -Ten plugin wyrównuje z http://www.w3.org/TR/vibration/ specyfikacji W3C wibracji - -Ten plugin umożliwia wibracje urządzenia. - -Ten plugin definiuje obiekty globalne, w tym `navigator.vibrate`. - -Chociaż w globalnym zasięgu, są nie dostępne dopiero po `deviceready` imprezie. - - document.addEventListener("deviceready", onDeviceReady, false); - function onDeviceReady() { - console.log(navigator.vibrate); - } - - -## Instalacja - - cordova plugin add cordova-plugin-vibration - - -## Obsługiwane platformy - -navigator.vibrate, -navigator.notification.vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 and 8 - Windows (Windows Phone 8.1 devices only) - -navigator.notification.vibrateWithPattern -navigator.notification.cancelVibration - Android - Windows Phone 8 - Windows (Windows Phone 8.1 devices only) - -## wibracje (zalecane) - -Funkcja ta ma trzy różne funkcje na podstawie parametrów przekazywanych do niej. - -### Standardowe wibracje - -Wibruje urządzenie na określoną ilość czasu. - - navigator.vibrate(time) - - -lub - - navigator.vibrate([time]) - - --**time**: milisekund wibracje urządzenia. *(Liczba)* - -#### Przykład - - // Vibrate for 3 seconds - navigator.vibrate(3000); - - // Vibrate for 3 seconds - navigator.vibrate([3000]); - - -#### Dziwactwa iOS - - * **czas**: ignoruje określony czas i wibruje na wstępnie określoną ilość czasu. - - navigator.vibrate(3000); // 3000 is ignored - -#### Windows i Blackberry dziwactwa - - * **czas**: Max czas jest 5000ms (5s) i min czas 1ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### Wibracje z wzorem (Android i Windows tylko) - -Wibruje urządzenie z danego wzoru - - navigator.vibrate(pattern); - - - * **wzór**: sekwencja czas trwania (w milisekundach), dla której chcesz włączyć lub wyłączyć wibrator. *(Tablica liczb)* - -#### Przykład - - // Vibrate for 1 second - // Wait for 1 second - // Vibrate for 3 seconds - // Wait for 1 second - // Vibrate for 5 seconds - navigator.vibrate([1000, 1000, 3000, 1000, 5000]); - - -#### Windows Phone 8 dziwactwa - - * vibrate(Pattern) spada z powrotem na wibracje z domyślny czas trwania - -#### Windows dziwactwa - - * vibrate(Pattern) spada z powrotem na wibracje z domyślny czas trwania - -### Anuluj wibracji (nieobsługiwane w iOS) - -Niezwłocznie anuluje aktualnie uruchomione wibracje. - - navigator.vibrate(0) - - -lub - - navigator.vibrate([]) - - -lub - - navigator.vibrate([0]) - - -Przekazując parametr 0, pustą tablicę lub tablicy z jednym z elementów wartości 0 spowoduje anulowanie wibracji. - -## *Notification.vibrate (przestarzałe) - -Wibruje urządzenie na określoną ilość czasu. - - navigator.notification.vibrate(time) - - - * **time**: milisekund wibracje urządzenia. *(Liczba)* - -### Przykład - - // Vibrate for 2.5 seconds - navigator.notification.vibrate(2500); - - -### Dziwactwa iOS - - * **czas**: ignoruje określony czas i wibruje na wstępnie określoną ilość czasu. - - navigator.notification.vibrate(); - navigator.notification.vibrate(2500); // 2500 is ignored - - -## *Notification.vibrateWithPattern (przestarzałe) - -Wibruje urządzenie z danego wzoru. - - navigator.notification.vibrateWithPattern(pattern, repeat) - - - * **wzór**: sekwencja czas trwania (w milisekundach), dla której chcesz włączyć lub wyłączyć wibrator. *(Tablica liczb)* - * **repeat**: opcjonalny indeks do tablicy wzór który zacząć powtarzać (będzie powtarzać do momentu anulowane), lub -1 nie powtarzania (domyślnie). *(Liczba)* - -### Przykład - - // Immediately start vibrating - // vibrate for 100ms, - // wait for 100ms, - // vibrate for 200ms, - // wait for 100ms, - // vibrate for 400ms, - // wait for 100ms, - // vibrate for 800ms, - // (do not repeat) - navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *Notification.cancelVibration (przestarzałe) - -Niezwłocznie anuluje aktualnie uruchomione wibracje. - - navigator.notification.cancelVibration() - - -* Uwaga - ze względu na dostosowanie specyfikacji w3c, oznaczonych gwiazdką metody zostaną wycofane \ No newline at end of file diff --git a/doc/pl/index.md b/doc/pl/index.md deleted file mode 100644 index 80fc12a..0000000 --- a/doc/pl/index.md +++ /dev/null @@ -1,184 +0,0 @@ - - -# cordova-plugin-vibration - -Ten plugin wyrównuje z http://www.w3.org/TR/vibration/ specyfikacji W3C wibracji - -Ten plugin umożliwia wibracje urządzenia. - -Ten plugin definiuje obiekty globalne, w tym `navigator.vibrate`. - -Chociaż w globalnym zasięgu, są nie dostępne dopiero po `deviceready` imprezie. - - document.addEventListener("deviceready", onDeviceReady, false); - function onDeviceReady() { - console.log(navigator.vibrate); - } - - -## Instalacja - - cordova plugin add cordova-plugin-vibration - - -## Obsługiwane platformy - -navigator.vibrate, -navigator.notification.vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 and 8 - -navigator.notification.vibrateWithPattern, -navigator.notification.cancelVibration - Android - Windows Phone 8 - -## wibracje (zalecane) - -Funkcja ta ma trzy różne funkcje na podstawie parametrów przekazywanych do niej. - -### Standardowe wibracje - -Wibruje urządzenie na określoną ilość czasu. - - navigator.vibrate(time) - - -lub - - navigator.vibrate([time]) - - --**time**: milisekund wibracje urządzenia. *(Liczba)* - -#### Przykład - - // Vibrate for 3 seconds - navigator.vibrate(3000); - - // Vibrate for 3 seconds - navigator.vibrate([3000]); - - -#### Dziwactwa iOS - -* **czas**: ignoruje określony czas i wibruje na wstępnie określoną ilość czasu. - - navigator.vibrate(3000); // 3000 is ignored - -#### Windows i Blackberry dziwactwa - -* **czas**: Max czas jest 5000ms (5s) i min czas 1ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### Wibracje z wzorem (Android i Windows tylko) - -Wibruje urządzenie z danego wzoru - - navigator.vibrate(pattern); - - -* **wzór**: sekwencja czas trwania (w milisekundach), dla której chcesz włączyć lub wyłączyć wibrator. *(Tablica liczb)* - -#### Przykład - - // Vibrate for 1 second - // Wait for 1 second - // Vibrate for 3 seconds - // Wait for 1 second - // Vibrate for 5 seconds - navigator.vibrate([1000, 1000, 3000, 1000, 5000]); - - -#### Windows Phone 8 dziwactwa - -* vibrate(Pattern) spada z powrotem na wibracje z domyślny czas trwania - -### Anuluj wibracji (nieobsługiwane w iOS) - -Niezwłocznie anuluje aktualnie uruchomione wibracje. - - navigator.vibrate(0) - - -lub - - navigator.vibrate([]) - - -lub - - navigator.vibrate([0]) - - -Przekazując parametr 0, pustą tablicę lub tablicy z jednym z elementów wartości 0 spowoduje anulowanie wibracji. - -## *Notification.vibrate (przestarzałe) - -Wibruje urządzenie na określoną ilość czasu. - - navigator.notification.vibrate(time) - - -* **time**: milisekund wibracje urządzenia. *(Liczba)* - -### Przykład - - // Vibrate for 2.5 seconds - navigator.notification.vibrate(2500); - - -### Dziwactwa iOS - -* **czas**: ignoruje określony czas i wibruje na wstępnie określoną ilość czasu. - - navigator.notification.vibrate(); - navigator.notification.vibrate(2500); // 2500 is ignored - - -## *Notification.vibrateWithPattern (przestarzałe) - -Wibruje urządzenie z danego wzoru. - - navigator.notification.vibrateWithPattern(pattern, repeat) - - -* **pattern**: sekwencja czas trwania (w milisekundach), dla której chcesz włączyć lub wyłączyć wibrator. *(Tablica liczb)* -* **repeat**: opcjonalny indeks do tablicy wzór który zacząć powtarzać (będzie powtarzać do momentu anulowane), lub -1 nie powtarzania (domyślnie). *(Liczba)* - -### Przykład - - // Immediately start vibrating - // vibrate for 100ms, - // wait for 100ms, - // vibrate for 200ms, - // wait for 100ms, - // vibrate for 400ms, - // wait for 100ms, - // vibrate for 800ms, - // (do not repeat) - navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *Notification.cancelVibration (przestarzałe) - -Niezwłocznie anuluje aktualnie uruchomione wibracje. - - navigator.notification.cancelVibration() - - -* Uwaga - ze względu na dostosowanie specyfikacji w3c, oznaczonych gwiazdką metody zostaną wycofane diff --git a/doc/ru/index.md b/doc/ru/index.md deleted file mode 100644 index 3edbdc7..0000000 --- a/doc/ru/index.md +++ /dev/null @@ -1,170 +0,0 @@ - - -# cordova-plugin-vibration - -Этот плагин соотвествует спецификации W3C http://www.w3.org/TR/vibration/ о вибрации - -Этот плагин позволяет управлять вибрацией устройства. - -## Установка - - cordova plugin add cordova-plugin-vibration - - -## Поддерживаемые платформы - -Navigator.Vibrate -Navigator.Notification.Vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 и 8 - -navigator.notification.vibrateWithPattern, -navigator.notification.cancelVibration - Android - -## vibrate (рекомендуемый) - -Эта функция имеет три различных функцала, на основе параметров, передаваемых ей. - -### Стандартная вибрация - -Устройство вибрирует в течении определенного количества времени. - - navigator.vibrate(time) - - -или - - navigator.vibrate([time]) - - --**time**: Сколько миллисекунд будет вибрировать устройство. *(Число)* - -#### Пример - - // Vibrate for 3 seconds - navigator.vibrate(3000); - - // Vibrate for 3 seconds - navigator.vibrate([3000]); - - -#### Особенности iOS - -* **time**: игнорирует указанное время и вибрирует предопределенный отрезок времени. - - navigator.vibrate(3000); // 3000 is ignored - -#### Особенности Windows и Blackberry - -* **time**: Максимальное время 5000мс (5с) и минимальное время 1 мс - - navigator.vibrate(8000); // will be truncated to 5000 - -### Вибрировать по шаблону (только Android и Windows) - -Вибрирует на устройства с заданным шаблоном - - navigator.vibrate(pattern); - - -* **pattern**: последовательность длительностей (в миллисекундах), в течение которого требуется включить или выключить вибрацию. *(Массив из чисел)* - -#### Пример - - // Vibrate for 1 second - // Wait for 1 second - // Vibrate for 3 seconds - // Wait for 1 second - // Vibrate for 5 seconds - navigator.vibrate([1000, 1000, 3000, 1000, 5000]); - - -### Отмена вибрации (не поддерживается в iOS) - -Немедленно отменяет любые выполняющиеся вибрации. - - navigator.vibrate(0) - - -или - - navigator.vibrate([]) - - -или - - navigator.vibrate([0]) - - -Передавая в параметре 0, пустой массив, или массив с одним элементом значения 0, на устройстве будет отменена любая вибрация. - -## *notification.vibrate (устарело) - -Устройство вибрирует за определенное количество времени. - - navigator.notification.vibrate(time) - - -* **time**: Сколько миллисекунд будет вибрировать устройство. *(Число)* - -### Пример - - // Vibrate for 2.5 seconds - navigator.notification.vibrate(2500); - - -### Особенности iOS - -* **time**: игнорирует указанное время и вибрирует предопределенный отрезок времени. - - navigator.notification.vibrate(); - navigator.notification.vibrate(2500); // 2500 is ignored - - -## *notification.vibrateWithPattern (устарело) - -Вибрирует на устройства с заданным шаблоном. - - navigator.notification.vibrateWithPattern(pattern, repeat) - - -* **pattern**: последовательность длительностей (в миллисекундах), в течение которого требуется включить или выключить вибрацию. *(Массив из чисел)* -* **repeat**: Необязательные индекс в массиве шаблона вибрации, начиная с которого начать повторять вибрацию (будет повторяться пока не будет отменен), или -1 для отсуствия повторения (по умолчанию). *(Число)* - -### Пример - - // Immediately start vibrating - // vibrate for 100ms, - // wait for 100ms, - // vibrate for 200ms, - // wait for 100ms, - // vibrate for 400ms, - // wait for 100ms, - // vibrate for 800ms, - // (do not repeat) - navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *notification.cancelVibration (устарело) - -Немедленно отменяет любые выполняющиеся вибрации. - - navigator.notification.cancelVibration() - - -* Обратите внимание - из-за соответствие спецификации w3c, Отмеченные методы будут поэтапно выведены из эксплаутации diff --git a/doc/zh/README.md b/doc/zh/README.md deleted file mode 100644 index 8ed3263..0000000 --- a/doc/zh/README.md +++ /dev/null @@ -1,190 +0,0 @@ - - -# cordova-plugin-vibration - -[![Build Status](https://travis-ci.org/apache/cordova-plugin-vibration.svg)](https://travis-ci.org/apache/cordova-plugin-vibration) - -這個外掛程式將對齊與 W3C 振動規範 HTTP://www.w3.org/TR/vibration/ - -這個外掛程式提供了方法振動設備。 - -這個外掛程式定義全域物件包括 `navigator.vibrate`. - -雖然在全球範圍內,他們不可用直到 `deviceready` 事件之後。 - - document.addEventListener("deviceready", onDeviceReady, false); - function onDeviceReady() { - console.log(navigator.vibrate); - } - - -## 安裝 - - cordova plugin add cordova-plugin-vibration - - -## 支援的平臺 - -navigator.vibrate, -navigator.notification.vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 and 8 - Windows (Windows Phone 8.1 devices only) - -navigator.notification.vibrateWithPattern -navigator.notification.cancelVibration - Android - Windows Phone 8 - Windows (Windows Phone 8.1 devices only) - -## 震動 (推薦) - -此函數具有三個不同的功能,基於傳遞給它的參數。 - -### 標準振動 - -為給定時間振動設備。 - - navigator.vibrate(time) - - -或 - - navigator.vibrate([time]) - - --**time**: 毫秒振動裝置。*(數)* - -#### 示例 - - // Vibrate for 3 seconds - navigator.vibrate(3000); - - // Vibrate for 3 seconds - navigator.vibrate([3000]); - - -#### iOS 的怪癖 - - * **time**: 忽略指定的時間和震動的一個預先設定的時間。 - - navigator.vibrate(3000); // 3000 is ignored - -#### Windows 和黑莓的怪癖 - - * **time**: 最長時間是 5000ms (5s) 和最小時間為 1ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### 以一種模式 (安卓系統和僅限 Windows) 振動 - -振動具有給定模式的設備 - - navigator.vibrate(pattern); - - - * **pattern**: 序列的持續時間 (以毫秒為單位) 為其打開或關閉振動器。*(數位陣列)* - -#### 示例 - - // Vibrate for 1 second - // Wait for 1 second - // Vibrate for 3 seconds - // Wait for 1 second - // Vibrate for 5 seconds - navigator.vibrate([1000, 1000, 3000, 1000, 5000]); - - -#### Windows Phone 8 怪癖 - - * vibrate(pattern) 瀑布回來上振動與預設持續時間 - -#### Windows 的怪癖 - - * vibrate(pattern) 瀑布回來上振動與預設持續時間 - -### 取消振動 (iOS 中不支援) - -立即取消任何當前正在運行的振動。 - - navigator.vibrate(0) - - -或 - - navigator.vibrate([]) - - -或 - - navigator.vibrate([0]) - - -在一個為 0 的參數中傳遞,空陣列或陣列的一個元素的值為 0 將取消任何振動。 - -## *notification.vibrate (已棄用) - -為給定時間振動設備。 - - navigator.notification.vibrate(time) - - - * **time**: 毫秒振動裝置。*(數)* - -### 示例 - - // Vibrate for 2.5 seconds - navigator.notification.vibrate(2500); - - -### iOS 的怪癖 - - * **time**: 忽略指定的時間和震動的一個預先設定的時間。 - - navigator.notification.vibrate(); - navigator.notification.vibrate(2500); // 2500 is ignored - - -## *notification.vibrateWithPattern (已棄用) - -振動具有給定模式的設備。 - - navigator.notification.vibrateWithPattern(pattern, repeat) - - - * **pattern**: 序列的持續時間 (以毫秒為單位) 為其打開或關閉振動器。*(數位陣列)* - * **repeat**: 在從中開始重複 (會重複,直到取消),或-1 (預設值) 沒有重複模式陣列中的可選索引。*(數)* - -### 示例 - - // Immediately start vibrating - // vibrate for 100ms, - // wait for 100ms, - // vibrate for 200ms, - // wait for 100ms, - // vibrate for 400ms, - // wait for 100ms, - // vibrate for 800ms, - // (do not repeat) - navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *notification.cancelVibration (已棄用) - -立即取消任何當前正在運行的振動。 - - navigator.notification.cancelVibration() - - -* 請注意--由於符合 w3c 規範,出演的方法將被淘汰 \ No newline at end of file diff --git a/doc/zh/index.md b/doc/zh/index.md deleted file mode 100644 index 36c7a04..0000000 --- a/doc/zh/index.md +++ /dev/null @@ -1,184 +0,0 @@ - - -# cordova-plugin-vibration - -這個外掛程式將對齊與 W3C 振動規範 HTTP://www.w3.org/TR/vibration/ - -這個外掛程式提供了方法振動設備。 - -這個外掛程式定義全域物件包括 `navigator.vibrate`. - -雖然在全球範圍內,他們不可用直到 `deviceready` 事件之後。 - - document.addEventListener("deviceready", onDeviceReady, false); - function onDeviceReady() { - console.log(navigator.vibrate); - } - - -## 安裝 - - cordova plugin add cordova-plugin-vibration - - -## 支援的平臺 - -navigator.vibrate, -navigator.notification.vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 and 8 - -navigator.notification.vibrateWithPattern, -navigator.notification.cancelVibration - Android - Windows Phone 8 - -## 震動 (推薦) - -此函數具有三個不同的功能,基於傳遞給它的參數。 - -### 標準振動 - -為給定時間振動設備。 - - navigator.vibrate(time) - - -或 - - navigator.vibrate([time]) - - --**time**: 毫秒振動裝置。*(數)* - -#### 示例 - - // Vibrate for 3 seconds - navigator.vibrate(3000); - - // Vibrate for 3 seconds - navigator.vibrate([3000]); - - -#### iOS 的怪癖 - -* **time**: 忽略指定的時間和震動的一個預先設定的時間。 - - navigator.vibrate(3000); // 3000 is ignored - -#### Windows 和黑莓的怪癖 - -* **time**: 最長時間是 5000ms (5s) 和最小時間為 1ms - - navigator.vibrate(8000); // will be truncated to 5000 - -### 以一種模式 (安卓系統和僅限 Windows) 振動 - -振動具有給定模式的設備 - - navigator.vibrate(pattern); - - -* **pattern**: 序列的持續時間 (以毫秒為單位) 為其打開或關閉振動器。*(數位陣列)* - -#### 示例 - - // Vibrate for 1 second - // Wait for 1 second - // Vibrate for 3 seconds - // Wait for 1 second - // Vibrate for 5 seconds - navigator.vibrate([1000, 1000, 3000, 1000, 5000]); - - -#### Windows Phone 8 怪癖 - -* vibrate(pattern) 瀑布回來上振動與預設持續時間 - -### 取消振動 (iOS 中不支援) - -立即取消任何當前正在運行的振動。 - - navigator.vibrate(0) - - -或 - - navigator.vibrate([]) - - -或 - - navigator.vibrate([0]) - - -在一個為 0 的參數中傳遞,空陣列或陣列的一個元素的值為 0 將取消任何振動。 - -## *notification.vibrate (已棄用) - -為給定時間振動設備。 - - navigator.notification.vibrate(time) - - -* **time**: 毫秒振動裝置。*(數)* - -### 示例 - - // Vibrate for 2.5 seconds - navigator.notification.vibrate(2500); - - -### iOS 的怪癖 - -* **time**: 忽略指定的時間和震動的一個預先設定的時間。 - - navigator.notification.vibrate(); - navigator.notification.vibrate(2500); // 2500 is ignored - - -## *notification.vibrateWithPattern (已棄用) - -振動具有給定模式的設備。 - - navigator.notification.vibrateWithPattern(pattern, repeat) - - -* **pattern**: 序列的持續時間 (以毫秒為單位) 為其打開或關閉振動器。*(數位陣列)* -* **repeat**: 在從中開始重複 (會重複,直到取消),或-1 (預設值) 沒有重複模式陣列中的可選索引。*(數)* - -### 示例 - - // Immediately start vibrating - // vibrate for 100ms, - // wait for 100ms, - // vibrate for 200ms, - // wait for 100ms, - // vibrate for 400ms, - // wait for 100ms, - // vibrate for 800ms, - // (do not repeat) - navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); - - -## *notification.cancelVibration (已棄用) - -立即取消任何當前正在運行的振動。 - - navigator.notification.cancelVibration() - - -* 請注意--由於符合 w3c 規範,出演的方法將被淘汰