Movatterモバイル変換


[0]ホーム

URL:


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

SpeechSynthesisUtterance: mark 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⁩.

Themark event of theWeb Speech APISpeechSynthesisUtterance object is fired when the spoken utterance reaches a named SSML "mark" tag.

Syntax

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

js
addEventListener("mark", (event) => { })onmark = (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 themark event in anaddEventListener method:

js
utterThis.addEventListener("mark", (event) => {  console.log(`A mark was reached: ${event.name}`);});

Or use theonmark event handler property:

js
utterThis.onmark = (event) => {  console.log(`A mark was reached: ${event.name}`);};

Specifications

Specification
Web Speech API
# eventdef-speechsynthesisutterance-mark
Web Speech API
# dom-speechsynthesisutterance-onmark

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp