index.html 550 B

1234567891011121314151617181920212223
  1. <head>
  2. <style> body { margin: 0; } </style>
  3. <script src="//unpkg.com/3d-force-graph"></script>
  4. <!--<script src="../../dist/3d-force-graph.js"></script>-->
  5. </head>
  6. <body>
  7. <div id="3d-graph"></div>
  8. <script>
  9. const Graph = ForceGraph3D()
  10. (document.getElementById('3d-graph'))
  11. .jsonUrl('../datasets/miserables.json')
  12. .nodeLabel('id')
  13. .nodeAutoColorBy('group')
  14. .onNodeDragEnd(node => {
  15. node.fx = node.x;
  16. node.fy = node.y;
  17. node.fz = node.z;
  18. });
  19. </script>
  20. </body>