index.html 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Organization Chart Plugin</title>
  6. <link rel="icon" href="img/logo.png">
  7. <style type="text/css">
  8. body {
  9. padding: 0;
  10. margin: 0;
  11. font-family: Arial;
  12. line-height: 1.5rem;
  13. background-color: #000;
  14. }
  15. section {
  16. width: 30rem;
  17. margin-top: 200px;
  18. margin-left: auto;
  19. margin-right: auto;
  20. padding: 1.5rem;
  21. border-radius: 3px;
  22. margin-bottom: 3rem;
  23. font-size: 1.2rem;
  24. }
  25. header {
  26. text-align: center;
  27. position: fixed;
  28. top: 0;
  29. width: 100%;
  30. z-index: 1000;
  31. background-color: #000;
  32. }
  33. #heading {
  34. width: 800px;
  35. height: 200px;
  36. background-image: url(img/heading.svg);
  37. background-size: 100% auto;
  38. display: inline-block;
  39. }
  40. #logo {
  41. background-image: url(img/logo.png);
  42. display: inline-block;
  43. position: absolute;
  44. width: 108px;
  45. height: 108px;
  46. top: 5px;
  47. left: 5px;
  48. }
  49. h1 {
  50. margin-top: -1.5rem;
  51. margin-right: -1.5rem;
  52. margin-bottom: 1.5rem;
  53. margin-left: -1.5rem;
  54. padding: 0.75rem;
  55. font-size: 1.5rem;
  56. text-align: center;
  57. color: #1BB287;
  58. background-color: #fff;
  59. }
  60. ol {
  61. margin-left: 0;
  62. list-style: none;
  63. counter-reset: counter;
  64. position: relative;
  65. padding: 0px;
  66. }
  67. ol > li:before {
  68. counter-increment: counter;
  69. content: counter(counter);
  70. position: relative;
  71. display: inline-block;
  72. z-index: 100;
  73. width: 1.5rem;
  74. height: 1.5rem;
  75. margin-right: 0.75rem;
  76. margin-bottom: 0.75rem;
  77. border: 3px solid #fff;
  78. line-height: 1.5rem;
  79. text-align: center;
  80. color: #fff;
  81. background-color: #000;
  82. border-radius: 100em;
  83. counter-increment: counter;
  84. content: counter(counter);
  85. }
  86. ol > li:hover:before {
  87. color: #000;
  88. background-color: #fff;
  89. }
  90. ol > li:after {
  91. position: absolute;
  92. top: 0;
  93. bottom: 0;
  94. z-index: 90;
  95. left: 0.75rem;
  96. margin-left: 1.5px;
  97. border-left: 3px solid #fff;
  98. content: "";
  99. }
  100. ol > li:last-child:before { margin-bottom: 0; }
  101. a { text-decoration: none; }
  102. a:link { color: #fff; }
  103. a:visited { color: #fff; }
  104. a:hover { color: #fff; }
  105. a:active { color: #fff; }
  106. </style>
  107. </head>
  108. <body>
  109. <header>
  110. <a id="logo" href="http://github.com/dabeng" target="_blank"></a>
  111. <a id="heading" href="http://github.com/dabeng/OrgChart" target="_blank"></a>
  112. </header>
  113. <section>
  114. <ol class="custom-bullet custom-bullet--a">
  115. <li><a href="ajax-datasource.html" target="_blank">load datasource through ajax</a></li>
  116. <li><a href="center-on-selected-node.html" target="_blank">center on selected node</a></li>
  117. <li><a href="color-coded.html" target="_blank">color-coded chart</a></li>
  118. <li><a href="default-collapsed.html" target="_blank">collapse nodes by default</a></li>
  119. <li><a href="bottom2top.html" target="_blank">bottom to top</a></li>
  120. <li><a href="left2right.html" target="_blank">left to right</a></li>
  121. <li><a href="right2left.html" target="_blank">right to left</a></li>
  122. <li><a href="drag-drop.html" target="_blank">drag and drop</a></li>
  123. <li><a href="edit-chart.html" target="_blank">edit chart</a></li>
  124. <li><a href="export-chart.html" target="_blank">export chart as a picture</a></li>
  125. <li><a href="filter-node.html" target="_blank">filter node</a></li>
  126. <li><a href="get-hierarchy.html" target="_blank">getHierarchy() method</a></li>
  127. <li><a href="integrate-map.html" target="_blank">itegrate orgchart with map info</a></li>
  128. <li><a href="local-datasource.html" target="_blank">local datasource</a></li>
  129. <li><a href="multiple-layers.html" target="_blank">multiple-layers chart</a></li>
  130. <li><a href="ondemand-loading-data.html" target="_blank">load data on-demand</a></li>
  131. <li><a href="option-createNode.html" target="_blank">createNode callback</a></li>
  132. <li><a href="pan-zoom.html" target="_blank">pan and zoom the chart</a></li>
  133. <li><a href="reload-data.html" target="_blank">refresh orgchart with new options</a></li>
  134. <li><a href="report-path.html" target="_blank">report path</a></li>
  135. <li><a href="toggle-sibs-resp.html" target="_blank">toggle sibling nodes respectively</a></li>
  136. <li><a href="ul-datasource.html" target="_blank">ul datasource</a></li>
  137. <li><a href="vertical-level.html" target="_blank">hybrid(horizontal + vertical) chart</a></li>
  138. <li><a href="custom-template.html" target="_blank">template for internal structure of node</a></li>
  139. </ol>
  140. </section>
  141. </body>
  142. </html>