springy/demo-json.html

39 lines
673 B
HTML
Raw Permalink Normal View History

2013-03-12 11:31:14 +00:00
<html>
<body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script src="springy.js"></script>
<script src="springyui.js"></script>
2013-03-12 11:31:14 +00:00
<script>
var graphJSON = {
2013-03-12 11:31:14 +00:00
"nodes": [
"Amphitryon",
"Alcmene",
"Iphicles",
"Heracles"
],
2013-03-12 11:31:14 +00:00
"edges": [
["Amphitryon", "Alcmene"],
["Alcmene", "Amphitryon"],
["Amphitryon", "Iphicles"],
["Amphitryon", "Heracles"]
2013-03-12 11:31:14 +00:00
]
};
2013-03-12 11:31:14 +00:00
jQuery(function(){
2013-03-14 13:30:14 +00:00
var graph = new Springy.Graph();
graph.loadJSON(graphJSON);
var springy = jQuery('#springydemo').springy({
graph: graph
});
2013-03-12 11:31:14 +00:00
});
</script>
<canvas id="springydemo" width="640" height="480" />
2013-03-12 11:31:14 +00:00
</body>
</html>