A Pen by Joe Watkins on CodePen.
Created
February 17, 2014 19:46
-
-
Save joe-watkins/9057562 to your computer and use it in GitHub Desktop.
A Pen by Joe Watkins.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- chrome canary or iOS7 --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* https://dvcs.w3.org/hg/speech-api/raw-file/tip/speechapi.html#tts-section */ | |
var u = new SpeechSynthesisUtterance(); | |
u.text = "Well I'll be dipped in buttermilk"; | |
speechSynthesis.speak(u); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment