springy/demo-json.html

39 lines
665 B
HTML
Raw 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
jQuery(function(){
var graph = new 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>