forked from jdavma/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.js
175 lines (150 loc) · 3.85 KB
/
functions.js
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
var griffname;
function Check(Eingabe) {
var nur_das ="0123456789[]()-+*%/y";
for (var i = 0; i < Eingabe.length; i++)
if (nur_das.indexOf(Eingabe.charAt(i))<0 ) return false;
return true;
}
function Ergebnis() {
var x = 0;
if (Check(window.document.Rechner_1.Display1.value))
x = eval(window.document.Rechner_1.Display1.value);
window.document.Rechner_1.Display1.value = x;
}
var punktzahl;
var p;
function rotbi() {
p = 1;
punkteswitcher();
}
function weissbi() {
p = 2;
punkteswitcher();
}
function gruenbi() {
p = 3;
punkteswitcher();
}
function gelbbi() {
p = 4;
punkteswitcher();
}
function orangebi() {
p = 5;
punkteswitcher();
}
function blaubi() {
p = 6;
punkteswitcher();
}
function schwarzbi() {
p = 7;
punkteswitcher();
}
function lilabi() {
p = 8;
punkteswitcher();
}
function Hinzufuegen1(operatoren) {
window.document.Rechner_1.Display1.value =
window.document.Rechner_1.Display1.value + operatoren;
}
function Hinzufuegen3(y) {
var y = Math.floor((Math.random() * 10) + 10);
window.document.Rechner_1.Display1.value =
window.document.Rechner_1.Display1.value + y;
}
function punkteswitcher(){
switch (p) {
case 1:
punktzahl = getCookie("griffrotbi");
if (punktzahl != "") {
}else{
punktzahl=2;}
break;
case 2:
punktzahl = getCookie("griffweissbi");
if (punktzahl != "") {
}else{
punktzahl=3;}
break;
case 3:
punktzahl = getCookie("griffgruenbi");
if (punktzahl != "") {
}else{
punktzahl=10;}
break;
case 4:
punktzahl = getCookie("griffgelbbi");
if (punktzahl != "") {
}else{
punktzahl=15;}
break;
case 5:
punktzahl = getCookie("grifforangebi");
if (punktzahl != "") {
}else{
punktzahl=17;}
break;
case 6:
punktzahl = getCookie("griffblaubi");
if (punktzahl != "") {
}else{
punktzahl=25;}
break;
case 7:
punktzahl = getCookie("griffschwarzbi");
if (punktzahl != "") {
}else{
punktzahl=35;}
break;
case 8:
punktzahl = getCookie("grifflilabi");
if (punktzahl != "") {
}else{
punktzahl=50;}
break;
}
window.document.Rechner_1.Display1.value =
window.document.Rechner_1.Display1.value + punktzahl;
}
<!--Hier startet das Programm für den zweiten Boulderrechner-->
function Check(Eingabe) {
var nur_das ="0123456789[]()-+*%/";
for (var i = 0; i < Eingabe.length; i++)
if (nur_das.indexOf(Eingabe.charAt(i))<0 ) return false;
return true;
}
function Ergebnis_() {
var x = 0;
if (Check(window.document.Rechner_2.Display2.value))
x = eval(window.document.Rechner_2.Display2.value);
window.document.Rechner_2.Display2.value = x;
}
function Hinzufuegen2(Zeichen) {
window.document.Rechner_2.Display2.value =
window.document.Rechner_2.Display2.value + Zeichen;
}
var schieberinhalt;
var w = 0;
function schieberwert(startwert,mininput,maxinput,griffbezeichner){
if(w == 0){
griffname = griffbezeichner;
document.getElementById("Schieberegler").innerHTML = '<div class="slidecontainer"><input type="range" min=' +mininput+ ' max= ' +maxinput+ ' value='+startwert+' class="slider" id="myRange"></div><button onClick="schiebercookie()">speichern</button>' ;
var slider = document.getElementById("myRange");
var output = document.getElementById("ergebnis");
output.innerHTML = "Ausgewählte Punktzahl:" + slider.value;
slider.oninput = function() {
output.innerHTML = "Ausgewählte Punktzahl:" + this.value;
schieberinhalt = this.value;
}
w = 1;
}else{
document.getElementById("Schieberegler").innerHTML = "";
document.getElementById("ergebnis").innerHTML = "";
w = 0;
}
}
function schiebercookie(){
setCookie(griffname,schieberinhalt,100 );
}