Skip to content

Instantly share code, notes, and snippets.

@JJBocanegra
Forked from AitorAlejandro/mensaje-hablado.js
Created September 6, 2018 06:57
Show Gist options
  • Save JJBocanegra/508c98a327a7cb5df902687cb24345ef to your computer and use it in GitHub Desktop.
Save JJBocanegra/508c98a327a7cb5df902687cb24345ef to your computer and use it in GitHub Desktop.
Uso básico total de SpeechSynthesis
var synth = window.speechSynthesis;
var mensaje = new SpeechSynthesisUtterance('Hola amo');
synth.speak(mensaje);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment