index.html 525 B

1234567891011121314151617181920
  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. .linkDirectionalParticles("value")
  15. .linkDirectionalParticleSpeed(d => d.value * 0.001);
  16. </script>
  17. </body>