-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinline_old.htm
More file actions
62 lines (52 loc) · 2.13 KB
/
Copy pathinline_old.htm
File metadata and controls
62 lines (52 loc) · 2.13 KB
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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="JSmol.min.js"></script>
<script type="text/javascript" src="js/Jmol2.js"></script>
<script type="text/javascript">
// This file inline_old.htm shows how to use the older jmolAppletInline() function of Jmol.js
Jmol.Info = {
jarPath: "java",
jarFile: "",
j2sPath: "j2s",
use: "HTML5", // could be JAVA or HTML5
disableJ2SLoadMonitor: false,
disableInitialConsole: true
}
var octmodel=
"Octahedral Model\n" +
"RLChime 06130615133D\n" +
"http://wwwchem.uwimona.edu.jm\n" +
" 15 6 0 0 1 V2000\n" +
" 0.0000 0.0000 0.0000 Ti 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" 0.0000 0.0000 2.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" 0.0000 2.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" 2.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" 0.0000 0.0000 -2.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" 0.0000 -2.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" -2.0000 0.0000 0.0000 Cl 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" 2.0000 2.0000 2.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" -2.0000 2.0000 2.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" 2.0000 -2.0000 2.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" -2.0000 -2.0000 2.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" 2.0000 2.0000 -2.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" -2.0000 2.0000 -2.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" 2.0000 -2.0000 -2.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" -2.0000 -2.0000 -2.0000 C 0 0 0 0 0 0 0 0 0 0 0 0\n" +
" 7 1 1 0\n" +
" 6 1 1 0\n" +
" 5 1 1 0\n" +
" 4 1 1 0\n" +
" 3 1 1 0\n" +
" 2 1 1 0\n" +
" END\n";
</script>
</head>
<body>
<script type="text/javascript">
//jmolInitialize(".","https://chemapps.stolaf.edu/pe/protexpl/molview/JmolAppletSigned.jar")
jmolInitialize(".","JmolAppletSigned0.jar")
jmolAppletInline(["450","450"], octmodel, "background blue")
</script>
</body>
</html>