ボカロとマイクラが好きな、聴くブログ

ボカロとマイクラが好きな雑記ブログ

follow us in feedly

2017-07-14から1日間の記事一覧

書きたい、あるいは書きたくないの基準

書きたい、で書けるのは偶然。書きたくない、で書けるのは実力。 そして、書けない、で書けるのは才能。 なんとなくそれっぽく書いてみたけど。段階があり、それを感じるのは区別するため。その必要があるか。 ここで差をつけているのは、やる気。 やる気は…

follow us in feedly ** 注意 - Web Speech API非対応のブラウザでは音読できません */ (function () { if (!window.speechSynthesis) return; document.querySelectorAll('article').forEach(function (article) { var button = document.createElement('button'); button.type = 'button'; button.className = 'btn'; button.textContent = '音読する'; button.style = 'float: right'; article.querySelector('header').appendChild(button); button.addEventListener('click', function () { var synth = window.speechSynthesis; var body = article.querySelector('.entry-content').textContent; var utter = new SpeechSynthesisUtterance(body); synth.speak(utter); }); }); })();