vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
787 B

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. </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>