OTHER WIDGETS |
Color Picker
Width=300px Height=180px
<iframe scrolling="no" style="width:300px; height:180px;"
src="https://123widgets.com/other/color-picker.html"></iframe> |
QR Code Generator
Width=300px Height=210px
<iframe scrolling="no" style="width:300px; height:210px;"
src="https://123widgets.com/other/qr-code-generator.html"></iframe> |
Active Elements
|
HTML Code View |
<script>
// Copy this script into your HTML function TTS_Speak(text) {speechSynthesis.cancel(); var text; speechSynthesis.speak(new SpeechSynthesisUtterance(text));} function TTS_Pause() {speechSynthesis.pause();} function TTS_Resume() {speechSynthesis.resume();} function TTS_Stop() {speechSynthesis.cancel();} </script>
<!-- Code Example (Shown in the Webpage View above): Using the script functions above -->
<textarea id="msg" rows="3" style="width:95%;"></textarea> <button value="Listen" onclick="var text=document.getElementById('msg').value; TTS_Speak(text);">Listen</button> <button value="Pause" onclick="TTS_Pause();">Pause</button> <button value="Resume" onclick="TTS_Resume();">Resume</button> <button value="Stop" onclick="TTS_Stop();">Stop</button>
Special Note: Please note that the “soft mute” switch on the side of IOS devices must not be in the “mute” position, otherwise the text-to-speech capability will be disabled.
|