forked from openastexviewer/openastexviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jsinterface.html
142 lines (141 loc) · 3.28 KB
/
jsinterface.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
134
135
136
137
138
139
140
141
142
<!--#set var="TITLE" value="Applet demo" -->
<!--#include file="header.inc" -->
<table border=1 cellspacing=1>
<tr>
<td width=640 height="<!--#echo var="APPLET_HEIGHT" -->"><applet
width="100%" height="100%" name="av"
code="MoleculeViewerApplet.class"
archive="<!--#echo var="APPLET_JAR" -->">
<param name="scriptFile" value="applet/621p.script">
<param name="script" value="view -wuantialias true;">
</applet></td><td valign=top>
<table border=0>
<tr>
<td align=right><input type=checkbox checked onclick='js_atoms(this)'></td>
<td>Atoms</td>
</tr>
<tr>
<tr>
<td align=right><input type=checkbox checked onclick='js_solvent(this)'></td>
<td>Solvent</td>
</tr>
<tr>
<td align=right><input type=checkbox onclick='js_spheres(this)'></td>
<td>Spheres</td>
</tr>
<tr>
<td align=right><input type=checkbox onclick='js_surface(this)'></td>
<td>Surface</td>
</tr>
<tr>
<td></td>
<td align=right>
<select onchange='js_colour(this)' style='{width:90px}'>
<option value=white selected>Colour...
<option value=white>White
<option value=red>Red
<option value=green>Green
<option value=blue>Blue
<option value=orange>Orange
<option value=cyan>Cyan
<option value=magenta>Magenta
<option value=brown>Brown
<option value=yellow>Yellow
<option value=purple>Purple
</select>
</td>
</tr>
<tr>
<td>
</td>
<td align=right>
<select onchange='js_transparency(this)' style='{width:90px}'>
<option value=100 selected>Opacity...
<option value=100>100%
<option value=90>90%
<option value=80>80%
<option value=70>70%
<option value=60>60%
<option value=50>50%
<option value=40>40%
<option value=30>30%
<option value=20>20%
<option value=10>10%
<option value=0>0%
</select></td>
</tr>
<tr>
<td></td>
<td align=right>
<select onchange='js_texture(this)' style='{width:90px}'>
<option value='off' selected>Texture...
<option value='images/textures/red2blue.jpg'>Rainbow
<option value='images/textures/rainbow_pastel.jpg'>Pale
<option value='images/textures/rwb.jpg'>Red2Blue
<option value='images/textures/blue2brown.jpg'>Blue2Brown
<option value='images/textures/blue2green.jpg'>Blue2Green
</select></td>
</tr>
<tr>
<td align=right><input type=checkbox onclick='js_schematic(this)'></td>
<td>Schematic</td>
</tr>
<tr><td colspan=2><hr></td></tr>
<tr>
<td colspan=2>Background</td>
</tr>
<tr>
<td></td>
<td align=right>
<select onchange='js_background(this)' style='{width:90px}'>
<option value=white>White
<option value='0x444444' selected>Grey
<option value=black>Black
</select></td>
</tr>
<tr>
<td align=right>
<input type=checkbox onclick='js_shadows(this)'>
</td>
<td>Shadows</td>
</tr>
<tr>
<td align=right>
<input type=checkbox onclick='js_antialias(this)'>
</td>
<td>Antialias</td>
</tr>
<tr>
<tr><td colspan=2>
<hr>
<table cellpadding=2>
<tr>
<td><font size=-2>LeftMouse</font></td>
<td><font size=-2>Rotate</font></td>
</tr>
<tr>
<td><font size=-2>Shift+Left</font></td>
<td><font size=-2>Scale</font></td>
</tr>
<tr>
<td><font size=-2>Ctrl+Left</font></td>
<td><font size=-2>Translate</font></td>
</tr>
<tr>
<td><font size=-2>Click</font></td>
<td><font size=-2>Select</font></td>
</tr>
<tr>
<td align=right><font size=-2>+,−</font></td>
<td><font size=-2>Clipping</font></td>
</tr>
<tr>
<td align=right><font size=-2>r</font></td>
<td><font size=-2>Reset view</font></td>
</tr>
</table>
</table>
</td>
</tr>
</table>
<!--#include file="footer.inc" -->