vis.js is a dynamic, browser-based visualization library

32 lines
1.1 KiB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title></title>
  5. <script src="../dist/vis.js"></script>
  6. <link href="../dist/vis.css" rel="stylesheet" type="text/css" />
  7. <script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-61231638-1', 'auto');ga('send', 'pageview');</script></head>
  8. <body>
  9. <script>
  10. var diffs = [
  11. 1000,
  12. 1000 * 60,
  13. 1000 * 60 * 60,
  14. 1000 * 60 * 60 * 24,
  15. 1000 * 60 * 60 * 24 * 30,
  16. 1000 * 60 * 60 * 24 * 30 * 100,
  17. 1000 * 60 * 60 * 24 * 30 * 10000
  18. ];
  19. diffs.forEach(function (diff) {
  20. var step = new vis.TimeStep(new Date(), new Date((new Date()).valueOf() + diff), diff / 40);
  21. console.log(diff, step._start.toLocaleString(), step._end.toLocaleString(), step.scale, step.step);
  22. step.first();
  23. while (step.hasNext()) {
  24. console.log(step.getLabelMajor(), ' --- ', step.getLabelMinor());
  25. step.next();
  26. }
  27. });
  28. </script>
  29. </body>
  30. </html>