This is our end goal:

We just saw examples of scrolling the content of an element as well as scroll contents of HTML body using scrollTop property.
The scrollTop property comes really handy when you want to change style or play with the HTML elements (add elements, animate elements) on scroll, the scrollTop property comes handy. We can scroll the content inside a div or the whole body using scrollTop property.
Let’s add the SVG path first without fill color.
Let’s change the dimensions of it and make the position of the SVG element fixed.
The main part is played by JavaScript here as we need to track the scrolling movement.
Let’s get the total length of the SVG element first. To do so, we can use SVGPathElement.getTotalLength() method.
The next task is to get the starting point of the drawing. We can use stroke-dasharray attribute to do so.
We need to hide the SVG element by offsetting dash. We will remove the line to show the SVG element before scroll drawing it.
Our goal is to draw the SVG element on scroll so we need to find the percentage of scroll. To make it work in all different browsers, we can use cross-browser properties to do so. At the end, we can offset dash the same percentage scrolled. While scrolling upwards, we need to reverse the drawing. For that we can just minus the drawn part from the total length.
Let’s create a function and call it using addEventListener.
This is how it will look like and work at the end:
NOTE: The best way to view the final result is in a smaller height screens. Open the example in a new window and make it smaller or just open it in a JSFiddle to view it.
Credit for this post goes to w3school’s triangle example.
path scroll scrollTop SVG vertically