Skip to content

Commit 92f7654

Browse files
change
1 parent 2fbcfb9 commit 92f7654

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

docs/index.html

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
<!DOCTYPE html>
3+
<html lang="ja">
4+
<head>
5+
<title>ボイスレコーダー</title>
6+
<link rel="stylesheet" href="styles.css">
7+
<meta charset="UTF-8">
8+
<meta name="viewport" content="width=device-width, initial-scale=1.0"></head>
9+
<body>
10+
<div class="container" title="2024年1月 ChromeOS Flexでローカルで使えるボイスレコーダーがないので作りました。">
11+
<div class="header">
12+
<h1 class="title">🎙 ボイスレコーダー 🎤 </h1>
13+
外部Webサーバにアクセスしないボイスレコーダー
14+
</div>
15+
<div class="controls" title="クリックで録音開始・録音停止することができます。(エンターキーやスペースキーでも可)" >
16+
<button class="button" id="btnStart"> [ ⏺ 録音開始 START ■ ] </button>
17+
<button class="button" id="btnStop" hidden> [ ■ Stop 録音停止 ⏹]</button>
18+
</div>
19+
<div class="recording" title="録音後に再生できるようになります。">
20+
<div class="recording-time">00 s</div>
21+
<hr>
22+
<audio controls id="player"></audio>
23+
<br><div id="greeting"></div>
24+
</div>
25+
</div>
26+
<script src="main.js"></script>
27+
</body>
28+
</html>

docs/main.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/styles.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)