|
|
- <!DOCTYPE HTML>
- <html>
- <head><script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-61231638-1', 'auto');ga('send', 'pageview');</script>
- <title>Network | Mobile friendly</title>
-
- <style type="text/css">
- html, body {
- font: 10pt arial;
- padding: 0;
- margin: 0;
- width: 100%;
- height: 100%;
- }
-
- #mynetwork {
- width: 100%;
- height: 100%;
- }
- </style>
-
- <!-- for mobile devices like android and iphone -->
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
-
- <script type="text/javascript" src="../../dist/vis.js"></script>
- <link href="../../dist/vis.css" rel="stylesheet" type="text/css" />
-
- <script type="text/javascript">
- var nodes = null;
- var edges = null;
- var network = null;
-
- // Called when the Visualization API is loaded.
- function draw() {
- nodes = [];
- edges = [];
- var EDGE_LENGTH = 50;
- var connectionCount = [];
-
- // randomly create some nodes
- var nodeCount = 20;
- var cols = parseInt(Math.sqrt(nodeCount));
- for (var i = 0; i < nodeCount; i++) {
- nodes.push({
- id: i,
- label: '' + i
- });
-
- connectionCount[i] = 0;
-
- // create links in a scale-free-network way
- if (i == 1) {
- var from = i;
- var to = 0;
- edges.push({
- from: from,
- to: to,
- length: EDGE_LENGTH
- });
- connectionCount[from]++;
- connectionCount[to]++;
- }
- else if (i > 1) {
- var conn = edges.length * 2;
- var rand = Math.floor(Math.random() * conn);
- var cum = 0;
- var j = 0;
- while (j < connectionCount.length && cum < rand) {
- cum += connectionCount[j];
- j++;
- }
-
- var from = i;
- var to = j;
- edges.push({
- from: from,
- to: to,
- length: EDGE_LENGTH
- });
- connectionCount[from]++;
- connectionCount[to]++;
- }
- }
-
- // Create a network
- var container = document.getElementById('mynetwork');
- var data = {
- nodes: nodes,
- edges: edges
- };
- var options = {
- stabilize: false,
- nodes: {
- shape: 'dot',
- radius: 24,
- fontSize: 24
- },
- edges: {
- width: 2
- }
- };
- network = new vis.Network(container, data, options);
- }
- </script>
- </head>
-
- <body onload="draw()" onresize="network.redraw();">
- <div id="mynetwork"></div>
- </body>
- </html>
|