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

步骤1  - 安装Vibration插件

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

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 参数。此阵列将要求设备振动一秒钟,然后等待一秒钟,然后重复该过程。

新闻动态 联系方式 广告合作 招聘英才 安科实验室 帮助与反馈 About Us

Copyright © 2013 - 2019 Ancii.com All Rights Reserved京ICP备18063983号-5 京公网安备11010802014868号