timeline.js/examples/index.html

15 lines
411 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 18:04:14 +01:00
<body onload="SVG.init('holder', '100%', '100%', 'both', true); SVG.addPoints([[50, 50],[100,100],[150,25],[175, -200]]); SVG.draw();">
2014-03-28 01:06:01 +01:00
<div id="holder"></div>
<script type="text/javascript" src="../timeline.js"></script>
</body>
</html>