17 lines
285 B
Plaintext
17 lines
285 B
Plaintext
/**
|
|
* 震动
|
|
* @param {number} duriation 震动时间单位ms,ios,微信没有用。
|
|
*/
|
|
export function vibrator(duriation : number):boolean {
|
|
wx.vibrateShort({
|
|
type:"medium",
|
|
success() {
|
|
|
|
},
|
|
fail(error) {
|
|
console.error("微信:震动失败")
|
|
}
|
|
})
|
|
return true;
|
|
}
|