uni.vibrateLong(OBJECT
);
uni.vibrateShort(OBJECT
);
1 语法
OBJECT
参数都是
参数名 | 类型 | 必填 | 说明 | 平台差异 |
---|---|---|---|---|
success | Function | 否 | 接口调用成功的回调 | |
fail | Function | 否 | 接口调用失败的回调函数 | |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
2 示例
uni.vibrateLong();
// 长振动
uni.vibrateShort();
// 短振动
3 实例
需要分为两步来完成。
3.1 第一步 Vue
<!-- template -->
<template><!-- 使用<template> -->
<view class="content">
<button type="primary" @click="uni.vibrateLong()">长振动</button>
<button type="default" @click="uni.vibrateShort()">短振动</button>
<icon type="warn" size="23" /><text selectable="true">iOS只有长振动,没有短振动。<!-- 提示 --></text>
</view>
</template>
3.2 第二步 JavaScript
无需再编写代码。
1 个评论
要回复文章请先登录或注册
第一次改BUG