-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (104 loc) · 2.99 KB
/
index.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Zahlenworte</title>
<style>
body,input,textarea,button,pre,code{
font-size:100%;
}
body,input,textarea,button{
font-family:Ubuntu, sans-serif;
}
input[readonly=readonly]{
background-color:#ddd;
border-radius:3px;
}
pre,code{
font-family:"Ubuntu Mono", monospace;
}
body{
background-color: #010101;
color: black;
}
h1,h2{
border-bottom:1px solid #5d7;
}
h1{
font-size:1.8em;
font-weight:bold;
}
h2{
font-size:1.3em;
font-type:italic;
}
a, a:hover, a:active, a:visited{
text-decoration:none;
color:gray;
}
div#main{
margin:auto;
max-width: 1100px;
min-width: 300px;
background-color:white;
padding:10px;
border-radius:15px;
border:1px solid #5d7;
border-shadow:5px 5px 5px #ddd;
}
</style>
<script src="libs/jquery.js" type="text/javascript"></script>
<!-- Sprachen -->
<script src="libs/n2words.js" type="text/javascript"></script>
<script src="libs/js-written-number.js" type="text/javascript"></script>
<!-- Programm -->
<script src="main.js" type="text/javascript"></script>
</head>
<body>
<div id="main">
<h1>Zahlenworte</h1>
<input type="checkbox" id="stopOnRepeat" value="true">
Auch bei sich wiederholenden Folgen als erfolgreich gefunden beenden.
<h2>Einzelne Zahl betrachten</h2>
<div id="einzelnInput">
<input type="number" id="einzelnZahl" placeholder="Zahl"/>
<select id="einzelnSprache">
<option value="">Bitte wählen</option>
</select>
<button id="einzelnStart">Los</button>
</div>
<div id="einzelnOutput">
Bitte Zahl eingeben und Sprache wählen, danach auf "Los".
</div>
<h2>Mehrere Zahlen betrachten</h2>
<div id="mehrfachInput">
<input type="number" id="mehrfachVon" value="0" placeholder="Von" />
<input type="number" id="mehrfachBis" value="100" placeholder="Bis" />
<input type="number" id="mehrfachAnzahl" value="10" placeholder="Anzahl" />
<select id="mehrfachSprache">
<option value="">Bitte wählen</option>
</select>
<button id="mehrfachStart">Los</button>
</div>
<div id="mehrfachOutput">
Bitte Bereich für Zufallszahlen, Anzahl der Durchläufe angeben sowie Sprache wählen, danach auf "Los".
</div>
<h2>Alle Zahlen betrachten</h2>
<div id="alleInput">
<input type="number" id="alleVon" value="0" placeholder="Von" />
<input type="number" id="alleBis" value="100" placeholder="Bis" />
<select id="alleSprache">
<option value="">Bitte wählen</option>
</select>
<button id="alleStart">Los</button>
</div>
<div id="alleOutput">
Bitte Bereich für Zahlen und Sprache wählen, danach auf "Los".
</div>
</div>
<div style="font-size:0.8em; color:white; text-align:center;">
Zahlenworte © 2017 - 2021 by KIMB-technologies<br />
<a href="https://github.com/kimbtech/Zahlenworte/" target="_blank">GitHub</a>
</div>
</body>
</html>