15 lines
517 B
HTML
15 lines
517 B
HTML
<html>
|
|
<head>
|
|
<title>Dynamic Vector Circle</title>
|
|
<style type="text/css">
|
|
body {
|
|
background-color: #333;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body onload="SVG.init('holder', '100%', '100%', 'both', true, true); SVG.addPoints([{'x':50, 'y':50, 'label':'test'},{'x':100, 'y':100, 'label':'test2'},{'x':150,'y':25, 'label':'test3'},{'x':175, 'y':-200, 'label':'test4'}]); SVG.draw();">
|
|
<div id="holder"></div>
|
|
<script type="text/javascript" src="../timeline.js"></script>
|
|
</body>
|
|
</html>
|