SpeechSynthesisEvent: name プロパティ
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.
name
は SpeechSynthesisUtterance
インターフェイスの読み取り専用プロパティで、 SpeechSynthesisUtterance.text
が話されているときに発生する、特定の種類のイベントに関連付けられた名前を返します。
mark
イベントの場合は、到達した SSML マーカーの名前、 boundary
イベントの場合は到達した境界の種類です。
値
文字列です。
例
js
utterThis.onboundary = (event) => {
console.log(
`${event.name} boundary reached after ${event.elapsedTime} seconds.`,
);
};
仕様書
Specification |
---|
Web Speech API # dom-speechsynthesisevent-name |
ブラウザーの互換性
BCD tables only load in the browser