-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3d.html
More file actions
33 lines (31 loc) · 924 Bytes
/
3d.html
File metadata and controls
33 lines (31 loc) · 924 Bytes
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
33
<!DOCTYPE html>
<html lang="en">
<head>
<title>XMPP Network Graph</title>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="900"/>
<meta property="og:title" content="XMPP Network Graph" />
<meta property="og:description" content="A visualization of interconnected XMPP domains" />
<meta property="og:image" content="https://xmppnetwork.goodbytes.im/networking.png" />
<link rel="author" href="humans.txt" />
<style>
body {
margin: 0;
}
</style>
<!-- https://github.com/vasturiano/3d-force-graph -->
<script src="3d-force-graph.min.js"></script>
</head>
<body>
<div id="3d-graph"></div>
<script>
const Graph = ForceGraph3D()(document.getElementById("3d-graph"))
.jsonUrl("data3d.json")
.nodeLabel("label")
.nodeAutoColorBy("label")
.nodeResolution(4)
.showNavInfo(true)
.cooldownTime(5000)
</script>
</body>
</html>