File: gxt_elements.html

package info (click to toggle)
jsxgraph 1.10.1%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 24,804 kB
  • sloc: javascript: 82,299; xml: 5,869; java: 1,072; php: 281; makefile: 184; python: 174; cpp: 76; sh: 12
file content (31 lines) | stat: -rw-r--r-- 1,415 bytes parent folder | download | duplicates (3)
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
<html>
<head>
   <title>Geonext elements test file</title>
   <link rel="stylesheet" type="text/css" href="../distrib/jsxgraph.css" />

   <script type="text/javascript" src="/javascript/prototype/prototype.js"></script>
   <script type="text/javascript" src="../distrib/jsxgraphcore.js"></script>
   <script type="text/javascript" src="../src/reader/geonext.js"></script>
</head>
<body>
   <div id="box" style="width:800px; height:500px; overflow:hidden; border:1px dashed black; background-color:wheat; clip:rect(0px, 800px, 500px, 0px);">
   </div>
    <script type="text/javascript">
        var board;
    </script>
   <form>
      <input type='button' value='Geonext-File einlesen' onclick="if(board) JXG.JSXGraph.freeBoard(board); board = JXG.JSXGraph.loadBoardFromFile('box','gxt_elements/'+document.getElementById('gxt').options[document.getElementById('gxt').selectedIndex].value+'.nc.gxt','Geonext');" />
        <select id="gxt">
          <option value='arrowparallel'>arrowparallel</option>
          <option value='lotstrecke'>lotstrecke</option>
          <option value='parallele'>parallele</option>
          <option value='senkrechte'>senkrechte</option>
          <option value='umkreis'>umkreis</option>
        </select>
      <br>
   </form>
   <div id="debug" style="position:relative; width:600px; height:100px; border:1px dashed black; background-color:white;">
   </div>

</body>
</html>