timeline.js/examples/index.html

15 lines
518 B
HTML
Raw Normal View History

2014-03-28 01:06:01 +01:00
<html>
<head>
<title>Dynamic Vector Circle</title>
<style type="text/css">
body {
background-color: #333;
}
</style>
</head>
2014-03-28 21:08:04 +01:00
<body onload="SVG.init('holder', '100%', '100%', 'both', true, true); SVG.addPoints([{'x':200, 'y':50, 'label':'test'},{'x':100, 'y':100, 'label':'test2'},{'x':150,'y':25, 'label':'test3'},{'x':175, 'y':-200, 'label':'test4'}]); SVG.draw();">
2014-03-28 01:06:01 +01:00
<div id="holder"></div>
<script type="text/javascript" src="../timeline.js"></script>
</body>
</html>