summaryrefslogtreecommitdiff
path: root/www/lib/vis/examples/network/nodeStyles/images.html
diff options
context:
space:
mode:
authorPliable Pixels <pliablepixels@gmail.com>2017-09-27 12:42:48 -0400
committerPliable Pixels <pliablepixels@gmail.com>2017-09-27 12:42:48 -0400
commit210e8feae2fb4842bfb2de38666e6c41671fef3c (patch)
treecbdafa34b1a6260bb20236d7e9de9eb1b690a1c5 /www/lib/vis/examples/network/nodeStyles/images.html
parente7e7baeaad90229ccb3e0f45f4ebd77be7d79b14 (diff)
removed lib
Diffstat (limited to 'www/lib/vis/examples/network/nodeStyles/images.html')
-rw-r--r--www/lib/vis/examples/network/nodeStyles/images.html82
1 files changed, 0 insertions, 82 deletions
diff --git a/www/lib/vis/examples/network/nodeStyles/images.html b/www/lib/vis/examples/network/nodeStyles/images.html
deleted file mode 100644
index 78810181..00000000
--- a/www/lib/vis/examples/network/nodeStyles/images.html
+++ /dev/null
@@ -1,82 +0,0 @@
-<!doctype html>
-<html>
-<head>
- <title>Network | Images</title>
-
- <style type="text/css">
- #mynetwork {
- width: 600px;
- height: 600px;
- border: 1px solid lightgray;
- }
- </style>
-
- <script type="text/javascript" src="../../../dist/vis.js"></script>
- <link href="../../../dist/vis-network.min.css" rel="stylesheet" type="text/css" />
-
- <script type="text/javascript">
- var nodes = null;
- var edges = null;
- var network = null;
-
- var DIR = '../img/refresh-cl/';
- var EDGE_LENGTH_MAIN = 150;
- var EDGE_LENGTH_SUB = 50;
-
- // Called when the Visualization API is loaded.
- function draw() {
- // Create a data table with nodes.
- nodes = [];
-
- // Create a data table with links.
- edges = [];
-
- nodes.push({id: 1, label: 'Main', image: DIR + 'Network-Pipe-icon.png', shape: 'image'});
- nodes.push({id: 2, label: 'Office', image: DIR + 'Network-Pipe-icon.png', shape: 'image'});
- nodes.push({id: 3, label: 'Wireless', image: DIR + 'Network-Pipe-icon.png', shape: 'image'});
- edges.push({from: 1, to: 2, length: EDGE_LENGTH_MAIN});
- edges.push({from: 1, to: 3, length: EDGE_LENGTH_MAIN});
-
- for (var i = 4; i <= 7; i++) {
- nodes.push({id: i, label: 'Computer', image: DIR + 'Hardware-My-Computer-3-icon.png', shape: 'image'});
- edges.push({from: 2, to: i, length: EDGE_LENGTH_SUB});
- }
-
- nodes.push({id: 101, label: 'Printer', image: DIR + 'Hardware-Printer-Blue-icon.png', shape: 'image'});
- edges.push({from: 2, to: 101, length: EDGE_LENGTH_SUB});
-
- nodes.push({id: 102, label: 'Laptop', image: DIR + 'Hardware-Laptop-1-icon.png', shape: 'image'});
- edges.push({from: 3, to: 102, length: EDGE_LENGTH_SUB});
-
- nodes.push({id: 103, label: 'network drive', image: DIR + 'Network-Drive-icon.png', shape: 'image'});
- edges.push({from: 1, to: 103, length: EDGE_LENGTH_SUB});
-
- nodes.push({id: 104, label: 'Internet', image: DIR + 'System-Firewall-2-icon.png', shape: 'image'});
- edges.push({from: 1, to: 104, length: EDGE_LENGTH_SUB});
-
- for (var i = 200; i <= 201; i++ ) {
- nodes.push({id: i, label: 'Smartphone', image: DIR + 'Hardware-My-PDA-02-icon.png', shape: 'image'});
- edges.push({from: 3, to: i, length: EDGE_LENGTH_SUB});
- }
-
- // create a network
- var container = document.getElementById('mynetwork');
- var data = {
- nodes: nodes,
- edges: edges
- };
- var options = {};
- network = new vis.Network(container, data, options);
- }
- </script>
- <script src="../../googleAnalytics.js"></script>
-
-<body onload="draw()">
-
-<p>
- Display nodes as images.
-</p>
-<div id="mynetwork"></div>
-
-</body>
-</html>