SpeechSynthesisEvent.elapsedTime
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The elapsedTime
read-only property of the SpeechSynthesisUtterance
interface returns the elapsed time in seconds after the SpeechSynthesisUtterance.text
started being spoken that the event was triggered at.
Syntax
event.elapsedTime;
Value
A float.
Examples
utterThis.onboundary = function(event) { console.log(event.name + ' boundary reached after ' + event.elapsedTime + ' seconds.'); }
Specifications
Specification |
---|
Web Speech API # dom-speechsynthesisevent-elapsedtime |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
elapsedTime |
33 |
14 |
49 |
No |
21 |
7 |
No |
33 |
62 |
No |
7 |
3.0 |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesisEvent/elapsedTime