紬とウィスキー ~ウイスキーブログと着物生地のブログ~

愉しめるウィスキーや素敵な紬生地など中心にご紹介していきます! よろしくお願いいたします。

ブルックラディ

ウィスキー(669)ブルックラディ ザ・クラシックラディ

購入年月日:2022年9年11日購入場所:ライフ新座店購入価格:1,980円(税抜)原料:モルト度数、容量:50%、200㎖輸入者:Remy Cointreau Japan株式会社 今日は、ライフ新座店で購入したブルックラディ蒸留所のザ・クラシックライディになります。 お値段は…

ウィスキー(410)ブルックラディ ザ・クラシックラディ パークアベニュー量り売り

ウィスキー名:ブルックラディ ザクラシックラディ 容量、度数:20㎖、50.0% 販売者:パークアベニュー 今日は、 ザクラシックラディをご紹介いたします。宇都宮のバー、パークアベニューさんの量り売りです。前回から、アイラモルト 5種類飲み比べセットを…

/* * はてなブログに「音読する」ボタンを追加する ** 使い方 - 以下をコピーして デザイン編集 → カスタマイズ → フッタHTML に貼り付け ** 注意 - Web Speech API非対応のブラウザでは音読できません */ function speak (e) { speechSynthesis.cancel(); // Chromeで初回実行時にspeechSynthesis.pause()できない問題を解消するため、空文字で一度speechSynthesis.speak()しておく var empty_utter = new SpeechSynthesisUtterance(''); speechSynthesis.speak(empty_utter); var utter = new SpeechSynthesisUtterance(this.body); speechSynthesis.speak(utter); e.currentTarget.textContent = '停止する'; e.currentTarget.removeEventListener('click', this); e.currentTarget.addEventListener('click', pause); } function pause (e) { speechSynthesis.pause(); e.currentTarget.textContent = '再開する'; e.currentTarget.removeEventListener('click', pause); e.currentTarget.addEventListener('click', resume); } function resume (e) { speechSynthesis.resume(); e.currentTarget.textContent = '停止する'; e.currentTarget.removeEventListener('click', resume); e.currentTarget.addEventListener('click', pause); } (function () { if (!window.speechSynthesis) return; document.querySelectorAll('article.entry').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); var body = article.querySelector('.entry-content').textContent; button.addEventListener('click', { handleEvent: speak, body: body }); }); })(); Footer © 2022 GitHub, Inc. Footer navigation Terms Privacy Security Status Docs Contact GitHub Pricing API Training Blog About