pantdipendra commited on
Commit
cc86a99
·
verified ·
1 Parent(s): 865f462

arrow and timeline steps highlight

Browse files
Files changed (1) hide show
  1. index.html +24 -0
index.html CHANGED
@@ -73,5 +73,29 @@
73
  </div>
74
  </div>
75
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
  </body>
77
  </html>
 
73
  </div>
74
  </div>
75
  </div>
76
+
77
+ <!-- Overlay for the bent arrow that links the active step to the flow bar -->
78
+ <svg
79
+ id="linkSvg"
80
+ class="linksvg"
81
+ viewBox="0 0 100 100"
82
+ preserveAspectRatio="none"
83
+ aria-hidden="true"
84
+ >
85
+ <defs>
86
+ <marker
87
+ id="arrowHead"
88
+ viewBox="0 0 10 10"
89
+ refX="8.5"
90
+ refY="5"
91
+ markerWidth="6"
92
+ markerHeight="6"
93
+ orient="auto-start-reverse"
94
+ >
95
+ <path d="M 0 0 L 10 5 L 0 10 z" fill="#cfe0ff"></path>
96
+ </marker>
97
+ </defs>
98
+ <path id="linkPath" marker-end="url(#arrowHead)"></path>
99
+ </svg>
100
  </body>
101
  </html>