-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrhs.html
135 lines (103 loc) · 2.26 KB
/
rhs.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>anharmonic rewrites</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.image {border-width:2; padding: 10px 10px; border-radius: 12px; border: 2px solid #f55 }
.image:hover {border-width:2; padding: 10px 10px; border-radius: 12px; border: 2px solid #ff5 }
a:active, a:link, a:visited {color: #f55;}
.flex {
display: flex;
flex-wrap: nowrap;
padding: 1px 26px;
}
.flex .box10 {
width: 10%;
margin: 2px;
text-align: left;
}
.flex .box20 {
width: 20%;
margin: 10px;
text-align: left;
}
.flex .box40 {
width: 40%;
margin: 10px;
text-align: left;
}
.flex .box33 {
width: 33%;
margin: 10px;
text-align: left;
}
.flex .box90 {
width: 90%;
margin: 2px;
text-align: left;
}
.flex .box70 {
width: 70%;
margin: 2px;
text-align: left;
}
span {
color: black;
}
span2 {
color: black;
}
span3 {
color: black;
}
.link {
stroke: black;
stroke-width: 2px;
}
.node { stroke: black; stroke-width: 1px;
}
.textClass {
stroke: black;
fill: white;
font-family: "Lucida Grande", "Droid Sans", Arial, Helvetica, sans-serif;
font-weight: normal;
stroke-width: .5;
font-size: 14px;
}
body {
background-color: #ffffff; color: #000000;
}
#svgdiv .svg {
border: 2px solid #888
}
</style>
</head>
<body>
<script src="rhs.js"></script>
<p>
<select id="choiceleft" onchange="chooseleft()">
<option value="D"> D
<option value="L"> L
<option value="FOE"> FOE
<option value="A"> A
<option value="FI"> FI
<option value="FOX"> FOX
</select>
---
<select id="choiceright" onchange="chooseright()">
<option value="D"> D
<option value="L"> L
<option value="FOE"> FOE
<option value="A"> A
<option value="FI"> FI
<option value="FOX"> FOX
</select>
<button class="image" onclick="chooseType()">compute</button> <br><br>
</p>
<p id="leftpat"></p>
<p id="demo"> </p>
</body>
</html>