GGB数学云 GGB+JS样例5 - 控制点动画

GGB+JS样例5 - 控制点动画

2016年11月22日 人阅读 GeoGebra»GGB+JS样例

摘要: 本文介绍基于GeoGebra和JavaScript的小程序样例 - js控制点动画。

网页代码:

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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>js控制点动画</title>
</head>
<body>
<button onclick="switchPoint()">换一个点</button>
<div id="applet1"></div>
<script src="../GeoGebra/deployggb.js"></script>
<script>
var name = 'C';
var applet = new GGBApplet({filename: '2d.ggb', appletOnLoad: function() {
ggbApplet.setAnimating(name, true);
ggbApplet.startAnimation();
}});
applet.setHTML5Codebase('../GeoGebra/HTML5/5.0/web/', true);
window.onload = function() {
applet.inject('applet1', 'html5');
};
function switchPoint() {
ggbApplet.setAnimating(name, false);
name = name === 'C' ? 'D' : 'C';
ggbApplet.setAnimating(name, true);
ggbApplet.startAnimation();
}
</script>
</body>
</html>
分享到: 更多