initial commit
This commit is contained in:
+27
@@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Tape Record</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
|
||||
<script type="text/javascript" src="main.js"></script>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
</head>
|
||||
<body>
|
||||
<main id="app" style="display:none">
|
||||
<h1>Tape Record</h1>
|
||||
<br>
|
||||
<p>
|
||||
<label for="file">Select audio file:</label>
|
||||
<input type="file" id="file" accept="audio/*" v-on:change="changeFile"/><br>
|
||||
</p>
|
||||
<div>
|
||||
<button @click="onPlay" :disabled="!canPlay">⏵Play</button>
|
||||
<button @click="onStop" :disabled="!canStop">⏹ Stop</button>
|
||||
</div>
|
||||
<h3 :id="rid" :title="rid" :style="{color: color}">{{ remaining }}</h3>
|
||||
<small><a href="https://github.com/klemek" target="_blank">@Klemek</a> - <a href="https://github.com/klemek/tape-record" target="_blank">Github Repository</a> - 2024</small>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user