Cordova - 振动

此插件用于连接设备的振动功能。

步骤 1 - 安装振动插件

我们可以在命令提示符窗口中通过运行以下代码 −来安装此插件

C:\Users\username\Desktop\CordovaProject>cordova plugin add cordova-plugin-vibration

步骤 2 - 添加按钮

安装插件后,我们可以在index.html中添加按钮,稍后将使用这些按钮触发振动。

<button id = "vibration">VIBRATION</button>
<button id = "vibrationPattern">PATTERN</button>

步骤 3 - 添加事件监听器

现在我们要在 index.js 中的 onDeviceReady 中添加事件监听器。

document.getElementById("vibration").addEventListener("click", vibration);
document.getElementById("vibrationPattern").addEventListener("click", vibrationPattern);

步骤 4 - 创建函数

这个插件非常容易使用。我们将创建两个函数。

function vibration() {
   var time = 3000;
   navigator.vibrate(time);
}

function vibrationPattern() {
   var pattern = [1000, 1000, 1000, 1000];
   navigator.vibrate(pattern);
}

第一个函数采用时间参数。此参数用于设置振动的持续时间。一旦我们按下VIBRATION按钮,设备将振动三秒钟。

第二个函数使用pattern参数。此数组将要求设备振动一秒钟,然后等待一秒钟,然后再次重复该过程。