Initial commit

This commit is contained in:
Elnu 2022-08-05 15:11:05 -07:00
commit a9a32378d0
4 changed files with 298 additions and 0 deletions

27
index.html Normal file
View file

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>nicolator</title>
<link rel="stylesheet" href="https://unpkg.com/sakura.css/css/normalize.css" type="text/css">
<link rel="stylesheet" href="https://unpkg.com/sakura.css/css/sakura-pink.css" type="text/css">
<script src="keymap.js"></script>
<script src="words.js"></script>
</head>
<body>
<details open>
<summary>Keymap</summary>
<img src="http://xahlee.info/kbd/i2/japanese_nicola_j_keyboard_layout.png" alt="Keymap">
</details>
<details>
<summary>Settings ⚙️</summary>
Seconds per kana <input type="number" id="timePerKana">
</details>
<h1 id="word" style="text-align: center"></h1>
<input id="input" style="width: 100%" autocomplete="off"><br>
<progress id="timer" value="1" style="width: 100%"></progress>
<div id="hint"></div>
<script src="nicolator.js"></script>
</body>
</html>