Benutzer-Werkzeuge

Webseiten-Werkzeuge


test01

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen RevisionVorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
Letzte ÜberarbeitungBeide Seiten der Revision
test01 [2022/07/11 09:18] torsten.roehltest01 [2022/07/11 09:55] torsten.roehl
Zeile 1: Zeile 1:
-<head> 
- <link rel="stylesheet" type="text/css" href="https://jsxgraph.org/distrib/jsxgraph.css" /> 
- <script type="text/javascript" src="https://jsxgraph.org/distrib/jsxgraphcore.js"></script> 
-</head> 
 ==AA== ==AA==
 <PRELOAD> <PRELOAD>
- 
- /lib/scripts/jqplot/jquery.jqplot.js 
- /lib/scripts/jqplot/jquery.jqplot.css    # css 
- /lib/scripts/jqplot/jquery.min.js        #(not required since DokuWiki 2012-01-25 Angua uses jQuery)  
- /lib/scripts/jqplot/jquery.jqplot.min.js # js 
  
-  
 # #
 # jsxgraph # jsxgraph
Zeile 17: Zeile 7:
 https://cdn.jsdelivr.net/npm/jsxgraph/distrib/jsxgraphcore.js https://cdn.jsdelivr.net/npm/jsxgraph/distrib/jsxgraphcore.js
 https://cdn.jsdelivr.net/npm/jsxgraph/distrib/jsxgraph.css https://cdn.jsdelivr.net/npm/jsxgraph/distrib/jsxgraph.css
-   
- 
-# 
-# personal  
-# 
-/lib/scripts/src/header.js  
-/lib/scripts/src/pointCharge.js 
  
 </PRELOAD> </PRELOAD>
 +<HTML>
  
-hhjkjkj +<body> 
-<JS>+<div id="box" class="jxgbox" style="width:500px; height:500px;"></div> 
 +<script type="text/javascript"> 
 +  
 +board1 = JXG.JSXGraph.initBoard('jxgbox1', {axis: true, boundingbox: [-6, 5, 6, -5]}); 
 +board1.suspendUpdate(); 
 +var s = board1.create('slider', [[0.75,-2],[4.5,-2],[0,0,10]], {name:'S',snapWidth:1}); 
 +board1.create('functiongraph',
 +    function(t) { 
 +        var val = 0, sv = s.Value()+1, 
 +        k = 1; 
 +        for(var i = 0; i < sv; i++) { 
 +            val = val + Math.sin(2*Math.PI*k*t)/k; 
 +            k += 1; 
 +        } 
 +        return val+2; 
 +    }, -10, 10], {strokeColor: "#bb0000"});
  
 +board1.create('functiongraph', [
 +    function(t) {
 +        var val = 0, sv = s.Value()+1,
 +            k = 1;
 +        for(var i = 0; i < sv; i++) {
 +            val = val + Math.sin(2*Math.PI*(2*k-1)*t)/(2*k-1);
 +            k += 1;
 +        }
 +        return val-2;
 +    }, -10, 10], {strokeColor: "#cc5520"});
 +
 +board1.unsuspendUpdate();
 +
 +
 +</script>
 +
 +
 +
 +</body>
 +</HTML>
 +
 +hhjkjkj
  
-JXG.JSXGraph.freeBoard(board); 
-board = JXG.JSXGraph.initBoard('box',{originX:100, originY:100, unitX:1, unitY:1, axis:true}); 
-board.create('point',[50,50]); board.create('point',[100,50]); 
-</JS> 
test01.txt · Zuletzt geändert: 2022/07/11 09:57 von torsten.roehl