kanaguessr/index.html

78 lines
3.5 KiB
HTML
Raw Normal View History

2021-01-22 00:25:31 +01:00
<!DOCTYPE html>
<html>
<head>
2023-03-06 13:32:56 +01:00
<title>kanaguessr</title>
<link rel="icon" type="image/x-icon" href="/favicon.png">
2021-01-22 00:25:31 +01:00
<meta charset="utf-8">
2023-03-04 22:49:24 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="./index.css">
2021-01-22 00:25:31 +01:00
<script type="text/javascript" src="./index.js"></script>
<script defer src="https://visitors.taevas.xyz/script.js" data-website-id="2b7bf05f-f84c-4d40-9a99-e5334aae35bd"></script>
2021-01-22 00:25:31 +01:00
</head>
2023-03-04 16:02:54 +01:00
<body>
<main class="container">
<div class="row" id="game">
2023-03-04 22:49:24 +01:00
<div class="col" id="question">
2023-03-06 13:32:56 +01:00
<p title="the character you have to write" id="character"></p>
<p title="the syllabary in which you have to write" id="equivalent"></p>
2023-03-04 22:49:24 +01:00
</div>
<div class="col" id="answer">
<div id="user_answer">
<p id="positive">0</p>
2023-03-04 22:49:24 +01:00
<input type="text" class="form-control form-control-sm" id="answer_field" placeholder="type..." autofocus="autofocus">
<p id="negative">0</p>
2023-03-04 22:49:24 +01:00
</div>
<div class="row" id="correct_answer" style="display: none;">
2023-03-06 13:32:56 +01:00
<p id="answer_paragraph">the answer was</p>
2023-03-04 22:49:24 +01:00
</div>
2023-03-07 23:59:19 +01:00
<div class="row" id="submit_answer">
<button class="col btn btn-lg btn-outline-success" id="answer_btn">answer</button>
<button class="col btn btn-lg btn-outline-info" id="next_btn" style="display: none;">next</button>
</div>
2023-03-04 22:49:24 +01:00
</div>
</div>
2023-03-05 21:56:19 +01:00
<div class="row" id="settings">
<div class="col me-4 ms-4" id="allowed_questions">
2023-03-06 01:07:09 +01:00
<p>character:</p>
2023-03-06 13:32:56 +01:00
<div class="h form-check form-check-inline">
2023-03-05 21:56:19 +01:00
<input type="checkbox" class="form-check-input" id="hq" checked>
2023-03-06 13:32:56 +01:00
<label for="hq" class="form-check-label">ひらがな</label>
2023-03-05 21:56:19 +01:00
</div>
2023-03-06 13:32:56 +01:00
<div class="k form-check form-check-inline">
2023-03-05 21:56:19 +01:00
<input type="checkbox" class="form-check-input" id="kq" checked>
2023-03-06 13:32:56 +01:00
<label for="kq" class="form-check-label">カタカナ</label>
2023-03-05 21:56:19 +01:00
</div>
2023-03-06 13:32:56 +01:00
<div class="r form-check form-check-inline">
<input type="checkbox" class="form-check-input" id="rq">
2023-03-06 13:32:56 +01:00
<label for="rq" class="form-check-label">rōmaji</label>
2023-03-05 21:56:19 +01:00
</div>
</div>
<div class="col me-4 ms-4" id="allowed_equivalents">
2023-03-06 01:07:09 +01:00
<p>type as:</p>
2023-03-06 13:32:56 +01:00
<div class="h form-check form-check-inline">
<input type="checkbox" class="form-check-input" id="he">
2023-03-06 13:32:56 +01:00
<label for="he" class="form-check-label">ひらがな</label>
2023-03-05 21:56:19 +01:00
</div>
2023-03-06 13:32:56 +01:00
<div class="k form-check form-check-inline">
<input type="checkbox" class="form-check-input" id="ke">
2023-03-06 13:32:56 +01:00
<label for="ke" class="form-check-label">カタカナ</label>
2023-03-05 21:56:19 +01:00
</div>
2023-03-06 13:32:56 +01:00
<div class="r form-check form-check-inline">
2023-03-05 21:56:19 +01:00
<input type="checkbox" class="form-check-input" id="re" checked>
2023-03-06 13:32:56 +01:00
<label for="re" class="form-check-label">rōmaji</label>
2023-03-05 21:56:19 +01:00
</div>
</div>
</div>
2023-03-05 21:56:19 +01:00
<div class="row" id="misc">
<div>
<input type="checkbox" class="form-check-input" id="auto">
<label for="auto" class="form-check-label" style="color: white">automatically go to next after answer</label>
</div>
</div>
</main>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
2021-01-22 00:25:31 +01:00
</body>
</html>