-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
110 lines (94 loc) · 3.86 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>
<title>Dynamic Resources</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="navigation.js"></script>
</head>
<body><div class="contentBox" id="contentBox">
<h1>Dynamic Resources</h1>
<p></p>
<script type="text/javascript" src="https://www.geogebra.org/apps/deployggb.js"></script>
<script type="text/javascript">
var parameters1 = {
"width":800,
"height":400,
"prerelease":false,
"showToolBar":false,
"borderColor":null,
"showMenuBar":false,
"showAlgebraInput":false,
"showResetIcon":true,
"enableLabelDrags":false,
"enableShiftDragZoom":false,
"enableRightClick":false,
"capturingThreshold":null,
"showToolBarHelp":false,
"errorDialogsActive":true,
"useBrowserForJS":false,
"material_id":"fnrdeekc"};
var applet1 = new GGBApplet(parameters1, true);
var parameters2 = {
"width":800,
"height":420,
"prerelease":false,
"showToolBar":false,
"borderColor":null,
"showMenuBar":false,
"showAlgebraInput":false,
"showResetIcon":true,
"enableLabelDrags":false,
"enableShiftDragZoom":false,
"enableRightClick":false,
"capturingThreshold":null,
"showToolBarHelp":false,
"errorDialogsActive":true,
"useBrowserForJS":false,
"material_id":"mktumd3r"};
var applet2 = new GGBApplet(parameters2, true);
// when used with Math Apps Bundle, uncomment this:
// applet.setHTML5Codebase('GeoGebra/HTML5/5.0/web/');
var parameters3 = {
"width":800,
"height":470,
"prerelease":false,
"showToolBar":false,
"borderColor":null,
"showMenuBar":false,
"showAlgebraInput":false,
"showResetIcon":false,
"enableLabelDrags":false,
"enableShiftDragZoom":false,
"enableRightClick":false,
"capturingThreshold":null,
"showToolBarHelp":false,
"errorDialogsActive":false,
"useBrowserForJS":false,
"material_id":"cnehwm6d"};
var applet3 = new GGBApplet(parameters3, true);
// when used with Math Apps Bundle, uncomment this:
// applet.setHTML5Codebase('GeoGebra/HTML5/5.0/web/');
window.onload = function() {
applet1.inject(applet_container1);
applet2.inject(applet_container2);
applet3.inject(applet_container3);
}
</script>
<p>
<h5>Animal</h5>
<div class="text">Move the sliders to change the parameters.</div>
<div id="applet_container1"></div>
</p>
<p>
<h5>Circles of a Triangle</h5>
<div class="text">Use the checkboxes to show the circles and their construction.</div>
<div id="applet_container2"></div>
</p>
<p>
<h5>Tangram</h5>
<div class="text">Play the Tangram game with GeoGebra.</div>
<div id="applet_container3"></div>
</p>
</div>
</body>
</html>