springy/demo-json.html

39 lines
673 B
HTML
Raw Normal View History

2013-03-12 13:25:20 +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-15 11:09:53 +00:00
2013-03-12 13:25:20 +00:00
<script>
2013-03-15 11:09:53 +00:00
var graphJSON = {
2013-03-12 13:25:20 +00:00
"nodes": [
2013-03-15 11:09:53 +00:00
"Amphitryon",
"Alcmene",
"Iphicles",
"Heracles"
2013-03-12 13:25:20 +00:00
],
"edges": [
2013-03-15 11:09:53 +00:00
["Amphitryon", "Alcmene"],
["Alcmene", "Amphitryon"],
["Amphitryon", "Iphicles"],
["Amphitryon", "Heracles"]
2013-03-12 13:25:20 +00:00
]
2013-03-15 11:09:53 +00:00
};
2013-03-12 13:25:20 +00:00
jQuery(function(){
2013-03-15 11:09:53 +00:00
var graph = new Springy.Graph();
graph.loadJSON(graphJSON);
2013-03-12 13:25:20 +00:00
var springy = jQuery('#springydemo').springy({
graph: graph
});
});
</script>
<canvas id="springydemo" width="640" height="480" />
2013-03-15 11:09:53 +00:00
2013-03-12 13:25:20 +00:00
</body>
</html>