Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. SpeechSynthesisUtterance
  4. resume

SpeechSynthesisUtterance: resume event

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨September 2018⁩.

Theresume event of theWeb Speech APISpeechSynthesisUtterance object is fired when a paused utterance is resumed.

Syntax

Use the event name in methods likeaddEventListener(), or set an event handler property.

js
addEventListener("resume", (event) => { })onresume = (event) => { }

Event type

ASpeechSynthesisEvent. Inherits fromEvent.

Event SpeechSynthesisEvent

Event properties

In addition to the properties listed below, properties from the parent interface,Event, are available.

charIndexRead only

Returns the index position of the character in theSpeechSynthesisUtterance.text that was being spoken when the event was triggered.

elapsedTimeRead only

Returns the elapsed time in seconds after theSpeechSynthesisUtterance.text started being spoken that the event was triggered at.

nameRead only

Returns the name associated with certain types of events occurring as theSpeechSynthesisUtterance.text is being spoken: the name of theSSML marker reached in the case of amark event, or the type of boundary reached in the case of aboundary event.

utteranceRead only

Returns theSpeechSynthesisUtterance instance that the event was triggered on.

Examples

You can use theresume event in anaddEventListener method:

js
utterThis.addEventListener("resume", (event) => {  console.log(`Speech resumed after ${event.elapsedTime} seconds.`);});

Or use theonresume event handler property:

js
utterThis.onresume = (event) => {  console.log(`Speech resumed after ${event.elapsedTime} seconds.`);};

Specifications

Specification
Web Speech API
# eventdef-speechsynthesisutterance-resume
Web Speech API
# dom-speechsynthesisutterance-onresume

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp