Notification:vibrate 属性
备注: 此特性在 Web Worker 中可用
Notification 接口的 vibrate 只读属性指定当通知触发时设备振动硬件发出的振动模式。此属性通过 Notification() 构造函数的 vibrate 选项指定。
值
示例
以下代码片段旨在创建同时触发设备振动的通知;首先创建一个简单的 options 对象,然后使用 Notification() 构造函数触发通知。
js
const options = {
  body: "您提交的代码收到了 3 条新的审阅意见。",
  vibrate: [200, 100, 200],
};
const n = new Notification("新的评论活动", options);
console.log(n.vibrate); // "[200, 100, 200]"
规范
| Specification | 
|---|
| Notifications API Standard  # dom-notification-vibrate  | 
浏览器兼容性
BCD tables only load in the browser