D3new.html 942 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html>
  2. <meta charset="utf-8">
  3. <style type="text/css">
  4. .node {
  5. cursor: pointer;
  6. }
  7. .overlay {
  8. background-color: #EEE;
  9. }
  10. .node circle {
  11. fill: #fff;
  12. stroke: steelblue;
  13. stroke-width: 1.5px;
  14. }
  15. .node text {
  16. font-size: 10px;
  17. font-family: sans-serif;
  18. }
  19. .link {
  20. fill: none;
  21. stroke: #ccc;
  22. stroke-width: 1.5px;
  23. }
  24. .templink {
  25. fill: none;
  26. stroke: red;
  27. stroke-width: 3px;
  28. }
  29. .ghostCircle.show {
  30. display: block;
  31. }
  32. .ghostCircle,
  33. .activeDrag .ghostCircle {
  34. display: none;
  35. }
  36. </style>
  37. <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
  38. <script src="assets/js/controllers/means/D3.js"></script>
  39. <script src="assets/js/controllers/means/app.js"></script>
  40. <body>
  41. <div id="tree-container"></div>
  42. </body>
  43. </html>