Thu, 04 Jun 2015 14:50:33 +0200
Genesis of lecture sources for Droidcon Berlin 2015 in Postbahnhof.
michael@0 | 1 | <!--- |
michael@0 | 2 | Licensed to the Apache Software Foundation (ASF) under one |
michael@0 | 3 | or more contributor license agreements. See the NOTICE file |
michael@0 | 4 | distributed with this work for additional information |
michael@0 | 5 | regarding copyright ownership. The ASF licenses this file |
michael@0 | 6 | to you under the Apache License, Version 2.0 (the |
michael@0 | 7 | "License"); you may not use this file except in compliance |
michael@0 | 8 | with the License. You may obtain a copy of the License at |
michael@0 | 9 | |
michael@0 | 10 | http://www.apache.org/licenses/LICENSE-2.0 |
michael@0 | 11 | |
michael@0 | 12 | Unless required by applicable law or agreed to in writing, |
michael@0 | 13 | software distributed under the License is distributed on an |
michael@0 | 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
michael@0 | 15 | KIND, either express or implied. See the License for the |
michael@0 | 16 | specific language governing permissions and limitations |
michael@0 | 17 | under the License. |
michael@0 | 18 | --> |
michael@0 | 19 | |
michael@0 | 20 | # org.apache.cordova.vibration |
michael@0 | 21 | |
michael@0 | 22 | Этот плагин выравнивает с http://www.w3.org/TR/vibration/ спецификации W3C вибрации |
michael@0 | 23 | |
michael@0 | 24 | Этот плагин позволяет вибрировать устройство. |
michael@0 | 25 | |
michael@0 | 26 | ## Установка |
michael@0 | 27 | |
michael@0 | 28 | cordova plugin add org.apache.cordova.vibration |
michael@0 | 29 | |
michael@0 | 30 | |
michael@0 | 31 | ## Поддерживаемые платформы |
michael@0 | 32 | |
michael@0 | 33 | Navigator.Vibrate |
michael@0 | 34 | Navigator.Notification.Vibrate - Amazon Fire OS - Android - BlackBerry 10 - Firefox OS - iOS - Windows Phone 7 и 8 |
michael@0 | 35 | |
michael@0 | 36 | navigator.notification.vibrateWithPattern, |
michael@0 | 37 | navigator.notification.cancelVibration - Android |
michael@0 | 38 | |
michael@0 | 39 | ## вибрировать (рекомендуется) |
michael@0 | 40 | |
michael@0 | 41 | Эта функция имеет три различных функций, на основе параметров, передаваемых ему. |
michael@0 | 42 | |
michael@0 | 43 | ### Стандарт вибрировать |
michael@0 | 44 | |
michael@0 | 45 | Устройство вибрирует за определенное количество времени. |
michael@0 | 46 | |
michael@0 | 47 | navigator.vibrate(time) |
michael@0 | 48 | |
michael@0 | 49 | |
michael@0 | 50 | или |
michael@0 | 51 | |
michael@0 | 52 | navigator.vibrate([time]) |
michael@0 | 53 | |
michael@0 | 54 | |
michael@0 | 55 | -**time**: Сколько миллисекунд будет вибрировать устройство. *(Число)* |
michael@0 | 56 | |
michael@0 | 57 | #### Пример |
michael@0 | 58 | |
michael@0 | 59 | // Vibrate for 3 seconds |
michael@0 | 60 | navigator.vibrate(3000); |
michael@0 | 61 | |
michael@0 | 62 | // Vibrate for 3 seconds |
michael@0 | 63 | navigator.vibrate([3000]); |
michael@0 | 64 | |
michael@0 | 65 | |
michael@0 | 66 | #### Особенности iOS |
michael@0 | 67 | |
michael@0 | 68 | * **time**: игнорирует указанное время и вибрирует предопределенный отрезок времени. |
michael@0 | 69 | |
michael@0 | 70 | navigator.vibrate(3000); // 3000 is ignored |
michael@0 | 71 | |
michael@0 | 72 | #### Окна и Blackberry причуды |
michael@0 | 73 | |
michael@0 | 74 | * **время**: время Макс 5000ms (5с) и минимальное время 1 мс |
michael@0 | 75 | |
michael@0 | 76 | navigator.vibrate(8000); // will be truncated to 5000 |
michael@0 | 77 | |
michael@0 | 78 | ### Вибрировать с узором (Android и Windows только) |
michael@0 | 79 | |
michael@0 | 80 | Вибрирует на устройства с заданным шаблоном |
michael@0 | 81 | |
michael@0 | 82 | navigator.vibrate(pattern); |
michael@0 | 83 | |
michael@0 | 84 | |
michael@0 | 85 | * **шаблон**: последовательность длительностей (в миллисекундах), для которого требуется включить или выключить вибростол. *(Массив из чисел)* |
michael@0 | 86 | |
michael@0 | 87 | #### Пример |
michael@0 | 88 | |
michael@0 | 89 | // Vibrate for 1 second |
michael@0 | 90 | // Wait for 1 second |
michael@0 | 91 | // Vibrate for 3 seconds |
michael@0 | 92 | // Wait for 1 second |
michael@0 | 93 | // Vibrate for 5 seconds |
michael@0 | 94 | navigator.vibrate([1000, 1000, 3000, 1000, 5000]); |
michael@0 | 95 | |
michael@0 | 96 | |
michael@0 | 97 | ### Отмена вибрации (не поддерживается в iOS) |
michael@0 | 98 | |
michael@0 | 99 | Немедленно отменяет любые выполняющиеся вибрации. |
michael@0 | 100 | |
michael@0 | 101 | navigator.vibrate(0) |
michael@0 | 102 | |
michael@0 | 103 | |
michael@0 | 104 | или |
michael@0 | 105 | |
michael@0 | 106 | navigator.vibrate([]) |
michael@0 | 107 | |
michael@0 | 108 | |
michael@0 | 109 | или |
michael@0 | 110 | |
michael@0 | 111 | navigator.vibrate([0]) |
michael@0 | 112 | |
michael@0 | 113 | |
michael@0 | 114 | Проходя в параметре 0, пустой массив, или массив с одним элементом значения 0 будет отменить любые вибрации. |
michael@0 | 115 | |
michael@0 | 116 | ## *Notification.Vibrate (устарело) |
michael@0 | 117 | |
michael@0 | 118 | Устройство вибрирует за определенное количество времени. |
michael@0 | 119 | |
michael@0 | 120 | navigator.notification.vibrate(time) |
michael@0 | 121 | |
michael@0 | 122 | |
michael@0 | 123 | * **time**: Сколько миллисекунд будет вибрировать устройство. *(Число)* |
michael@0 | 124 | |
michael@0 | 125 | ### Пример |
michael@0 | 126 | |
michael@0 | 127 | // Vibrate for 2.5 seconds |
michael@0 | 128 | navigator.notification.vibrate(2500); |
michael@0 | 129 | |
michael@0 | 130 | |
michael@0 | 131 | ### Особенности iOS |
michael@0 | 132 | |
michael@0 | 133 | * **time**: игнорирует указанное время и вибрирует предопределенный отрезок времени. |
michael@0 | 134 | |
michael@0 | 135 | navigator.notification.vibrate(); |
michael@0 | 136 | navigator.notification.vibrate(2500); // 2500 is ignored |
michael@0 | 137 | |
michael@0 | 138 | |
michael@0 | 139 | ## *Notification.vibrateWithPattern (устарело) |
michael@0 | 140 | |
michael@0 | 141 | Вибрирует на устройства с заданным шаблоном. |
michael@0 | 142 | |
michael@0 | 143 | navigator.notification.vibrateWithPattern(pattern, repeat) |
michael@0 | 144 | |
michael@0 | 145 | |
michael@0 | 146 | * **шаблон**: последовательность длительностей (в миллисекундах), для которого требуется включить или выключить вибростол. *(Массив из чисел)* |
michael@0 | 147 | * **повторяю**: дополнительный индекс в массиве шаблон для начала повторять (будет повторять пока не отменен), или -1 для не повторения (по умолчанию). *(Число)* |
michael@0 | 148 | |
michael@0 | 149 | ### Пример |
michael@0 | 150 | |
michael@0 | 151 | // Immediately start vibrating |
michael@0 | 152 | // vibrate for 100ms, |
michael@0 | 153 | // wait for 100ms, |
michael@0 | 154 | // vibrate for 200ms, |
michael@0 | 155 | // wait for 100ms, |
michael@0 | 156 | // vibrate for 400ms, |
michael@0 | 157 | // wait for 100ms, |
michael@0 | 158 | // vibrate for 800ms, |
michael@0 | 159 | // (do not repeat) |
michael@0 | 160 | navigator.notification.vibrateWithPattern([0, 100, 100, 200, 100, 400, 100, 800]); |
michael@0 | 161 | |
michael@0 | 162 | |
michael@0 | 163 | ## *Notification.cancelVibration (устарело) |
michael@0 | 164 | |
michael@0 | 165 | Немедленно отменяет любые выполняющиеся вибрации. |
michael@0 | 166 | |
michael@0 | 167 | navigator.notification.cancelVibration() |
michael@0 | 168 | |
michael@0 | 169 | |
michael@0 | 170 | * Обратите внимание - из-за соответствие спецификации w3c, Избранные методы будут поэтапно |