-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsoh-script.html
65 lines (65 loc) · 3.64 KB
/
soh-script.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<title>SoH Script Translator | Disturbo's corner</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="assets/icons/icon.png">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-P4P5HCX3GM"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-P4P5HCX3GM');
</script>
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8952572710252215"
crossorigin="anonymous"></script>
<script type="text/javascript" src="scripts/FileSaver.js"></script>
<script type="text/javascript" src="scripts/ModuleLoader.js"></script>
<meta http-equiv="content-language" content="en">
<meta property="og:image" content="assets/icons/icon.png">
<meta name="description" content="Simple tool to translate to and from the Scions of Hourglass symbols">
<meta name="keywords" content="valorant, lore, cipher">
<meta name="theme-color" content="#56744b">
<meta author="Disturbo">
</head>
<body onload="loaded()">
<div style="font-family: DINNext-Light"></div>
<div class="content main" style="font-family: DINNext-Regular">
<div id="navbar"></div>
<div id="page-content">
<center>
<div style="margin-bottom: 30px; background-color:#0f192390">
<h1 style="padding:30px 0px 30px 0px; margin:0px">Scions of Hourglass Script Translator</h1>
</div>
<div>
<div style="vertical-align: middle">
<div style="display: inline-block; text-align: left;">
This tool allows you to translate:
<ul>
<li>English text to SoH script by typing into the text box below</li>
<li>SoH script to English text by pressing the different symbols</li>
</ul>
Additionally, although not all letters have known symbols, this tool provides a speculated version.<br/>
You can toggle this with the checkbox below and any letters that are speculative are marked with an asterisk.
</div>
<p><input type="checkbox" id="include-speculative-checkbox" onclick="toggleIncludeSpeculative()">Include speculative symbols</input></p>
<p><input type="text" id="english-input" maxlength="50" size="70" oninput="updateEnglishToSoH()"></p>
<div style="padding: 30px 0px 30px 0px;">
<canvas style="vertical-align: middle" hidden id="result" width="0" height="40"></canvas>
<canvas style="vertical-align: middle" id="show" width="0" height="40"></canvas>
<a id="download-button" class="stylized-button" style="vertical-align: middle" href="" onclick="downloadSymbols(); return false;" hidden>Download symbols!</a>
</div>
<div id="soh-symbols-keyboard-div"></div>
</div>
</div>
<div style="margin: 0px 0px 40px 0px"></div>
</center>
</div>
</div>
<div id="footer"></div>
<script type="text/javascript" src="scripts/ModuleLoader.js"></script>
<script type="text/javascript" src="scripts/SoHScript.js"></script>
</body>
</html>