-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbasic-dynamic-3d-resources.html
107 lines (93 loc) · 4 KB
/
basic-dynamic-3d-resources.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
<!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>
<script type="text/javascript" src="https://www.geogebra.org/apps/deployggb.js"></script>
<script type="text/javascript">
var parameters1 = {
"width":800,
"height":450,
"prerelease":false,
"showToolBar":false,
"borderColor":null,
"showMenuBar":false,
"showAlgebraInput":false,
"showResetIcon":true,
"enableLabelDrags":false,
"enableShiftDragZoom":true,
"enableRightClick":false,
"capturingThreshold":null,
"showToolBarHelp":false,
"errorDialogsActive":true,
"useBrowserForJS":false,
"material_id":"b8upej4p"};
var applet1 = new GGBApplet(parameters1, true);
var parameters2 = {
"width":800,
"height":400,
"prerelease":false,
"showToolBar":false,
"borderColor":null,
"showMenuBar":false,
"showAlgebraInput":false,
"showResetIcon":true,
"enableLabelDrags":false,
"enableShiftDragZoom":true,
"enableRightClick":false,
"capturingThreshold":null,
"showToolBarHelp":false,
"errorDialogsActive":true,
"useBrowserForJS":false,
"material_id":"cpz3fydp"};
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":500,
"prerelease":false,
"showToolBar":false,
"borderColor":null,
"showMenuBar":false,
"showAlgebraInput":false,
"showResetIcon":true,
"enableLabelDrags":false,
"enableShiftDragZoom":true,
"enableRightClick":false,
"capturingThreshold":null,
"showToolBarHelp":false,
"errorDialogsActive":false,
"useBrowserForJS":false,
"material_id":"zvqu2gpv"};
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>Valentine's Hearts</h5>
<div class="text"> Press play to start the animation. Drag the 3D view to explore the hearts from every perspective.</div>
<div id="applet_container1"></div>
</p>
<p>
<h5>Stairs</h5>
<div class="text"> Drag the sliders to change the parameters. Drag the 3D view to explore the stairs from every perspective.</div>
<div id="applet_container2"></div>
</p>
<p>
<h5>Icosahedron</h5>
<div class="text"> Drag the slider to open the net. Drag the 3D view to explore the Icosahedron from every perspective.</div>
<div id="applet_container3"></div>
</p>
</div>
</body>
</html>