javascript

base64 to blobURL

const raw = window.atob(base64); const rawLength = raw.length; const blobArray = new Uint8Array(new ArrayBuffer(rawLength)); for (let i = 0; i < rawLength; i++) { blobArray[i] = raw.charCodeAt(i); } const blob = new Blob([blobArray], {type…

ひらがな一文字をランダムで表示するjavascriptを書いてみた

イメージ イメージ スタートボタンでドラムロールがスタート ストップでドラムロールが停止します code <meta charset="UTF-8" /> <html> <style type="text/css"> .main { font-size: 480px; text-align: center; } .start { display: inline-block; font-size: 2em; width: 300px; height: 100px; padding: 0.5e</html></meta>…