我对javascript和html知之甚少,我有一个用Gephi制作的.gexf文件,我希望能够在浏览器中查看和操作(或者至少在Gephi之外) 我一直在使用以下网站作为资源http://sigmajs.org/,但它的“教程”代码对我没有任何帮助。
<!DOCTYPE html>
<html>
<head>
<title>Network Graph</title>
<style type="text/css">
#sigma-container {
max-width: 400px;
height: 400px;
margin: auto;
}
</style>
</head>
<body>
<h1> Testing </h1>
<div id="sigma-container"></div>
<script src="sigma.js-master/sigma.js"></script>
<script src="sigma.js-master/plugins/sigma.parsers.gexf/sigma.parsers.gexf.js"></script>
<script>
sigma.parsers.gexf(
'Data_Dictionary_Network_Graph.gexf',
{
container: 'sigma-container'
},
function(s) {
}
);
</script>
</body>
</html>
我假设我错过了一些明显的东西,但我根本不知道js,只有基本的html,sigma.js恰好是我能找到的唯一一个我想要的插件