resume

我们的志愿者还没有将这篇文章翻译为 中文 (简体)加入我们帮助完成翻译!
您也可以阅读此文章的English (US)版。

This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the specification changes.

The resume event of the Web Speech API SpeechSynthesisUtterance object is fired when a paused utterance is resumed.

Bubbles No
Cancelable No
Target objects SpeechSynthesisUtterance
Interface SpeechSynthesisEvent

Examples

utterThis.onresume = function(event) {
  console.log('Speech resumed after ' + event.elapsedTime + ' milliseconds.');
}

Inheritance

The resume event implements the SpeechSynthesisEvent interface, which inherits from Event. It therefore has available the properties and methods defined on both these interfaces.

Specifications

Specification Status Comment
Web Speech API
The definition of 'speech synthesis utterance events' in that specification.
Draft  

Browser compatibility

Feature Chrome Edge Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support 33 (Yes) 44 (44) [1] No support No support No support
Feature Android Chrome Edge Firefox Mobile (Gecko) Firefox OS IE Phone Opera Mobile Safari Mobile
Basic support ? (Yes) (Yes) ? 2.5 No support No support No support
  • [1] Can be enabled via the media.webspeech.synth.enabled flag in about:config.

See also

文档标签和贡献者