ネットワーク、ICT、PCやその他に関連する略語を検索できます。英単語の発音付きにしました。をクリックすると英単語を発音します。
ネットワーク、ICT、PCやその他に関連する略語を検索できます。英単語の発音付きにしました。をクリックすると英単語を発音します。
<script type="text/javascript">
var u = new SpeechSynthesisUtterance();
u.text = 'Hello World';
u.lang = 'en-US';
u.rate = 1.2;
u.onend = function(event) { alert('Finished in ' + event.elapsedTime + ' seconds.'); }
speechSynthesis.speak(u);
</script>
実際の使い方としては、英単語または英語の文章を示し、ボタンをクリックすると発音するようにしたい。下のを押すと”Hello. World.”と発音します。
<script type="text/javascript">
function r(n){
var u = new SpeechSynthesisUtterance();
u.text = n;
u.lang = 'en-US';
u.rate = 0.9;
u.pitch = 1.0;
speechSynthesis.speak(u);
}
</script>
html
Hello. World. <button type="button" onclick="r('Hello. world.')"><span class="speaker">🔊</span></button>