I'm trying to create a vertical progress-bar, with 8 dots on a solid line (with the 8th on the end), where every dot stands for one step in the process. See attached screenshot (in the bottom to prevent this question will be broken up).
Of course I have tried to make some stuff in HTML and CSS, which you can see in this fiddle (code below). The problem with this is, that I can't find a way to create the 7 dots on the light-green line, without adding 8 more divs (8 because the first also has to be there).
Functionality-wise, I want JS to check the value
of the progressNow
-div, multiplay it by 100 and add that as a CSS-height to the progressNow
-class. Problem with this is that the dot will move, instead of the bar filling up. (does this make sense?)
This has made me think of creating an SVG element in the shape you can see in the screenshot, that has a gradient that changes location based on the nth step in the process. I know this will work and I know I can get it to work, but I was wondering if there's another, maybe easier, way to achieve what I'm trying to achieve.
HTML
<div id="progress">
<div class="progressBar"></div>
<div class="progressNow" value="1"></div>
<div class="progressTotal"></div>
</div>
CSS
#progress {
position: relative;
}
#progress .progressBar {
height: 800px;
width: 6px;
background: #8fe4bf;
position: absolute;
}
#progress .progressNow {
height: 100px;
width: 6px;
background: #00b164;
position: absolute;
}
#progress .progressNow::after {
content: "";
width: 16px;
height: 16px;
border-radius: 50%;
background: #00b164;
display: block;
margin-left: -5px;
position: absolute;
top: 90px;
}
Desired result (in this case, the value
of progressNow
is 2
)
To start, open a new tab in your browser and go to forms.google.com Select a new, blank form. Open the settings. Then, select the presentation tab. Select the option to show a progress bar and save the changes.
My solution is similar to @Stewartside's, except it uses Flexbox to position everything equally. It's also really easy to change the height.
ul.progress-bar {
height: 300px;
list-style: none;
margin: 0;
padding: 0;
position: relative;
display: flex;
flex-direction: column;
justify-content: space-between;
overflow: hidden;
}
ul.progress-bar::after {
content: "";
position: absolute;
top: 0;
left: 5px;
background: #777;
width: 5px;
height: 100vh;
}
ul.progress-bar li {
background: #000;
border-radius: 100px;
width: 15px;
height: 15px;
z-index: 1;
position: relative;
}
ul.progress-bar li.stop ~ li {
background: #777;
}
ul.progress-bar li.stop ~ li::after {
height: 0;
}
ul.progress-bar li::after {
content: "";
position: absolute;
bottom: 0;
left: 5px;
background: #000;
width: 5px;
height: 100vh;
}
<ul class="progress-bar">
<li></li>
<li></li>
<li></li>
<li class="stop"></li>
<li></li>
</ul>
For some reason, the bottom segment doesn't seem to show up in the stacksnippet, so here it is on jsfiddle.
Here is a CSS solution with very minimal no. of elements. In this approach we use a combination of linear-gradients
and radial-gradients
to produce the vertical line and the dots.
The parent #progress-bar
element produces the lightgreen (initial) line and circles while the same gradients are added to the child #progress-now
element which is positioned absolutely with respect to the parent. The only difference is that the height
of the #progress-now
element is determined based on the value
attribute.
The solution would work even when the values are in fractions. I know you are using it for step tracker but this is just an added use (blowing my own trumpet :D).
window.onload = function() {
var val = document.getElementById('progress-now').getAttribute('value');
var progress = (val * 50 > 400) ? 400 : val*50; /* 50 is 1/8th of height, 400 is height */
document.getElementById('progress-now').setAttribute('style', 'height: ' + progress + 'px');
}
#progress-bar {
position: relative;
height: 400px;
width: 200px;
background: linear-gradient(to bottom, lightgreen 99.9%, transparent 99.9%), radial-gradient(circle at 50% 50%, lightgreen 25%, transparent 30%);
background-position: 50% 0%, 50% 15px; /* 15px is 30% of 50px */
background-size: 5px 100%, 50px 50px; /* 5px is the thickness of the bar, 50px is 1/8th of the height */
background-repeat: no-repeat, repeat-y;
}
#progress-now {
position: absolute;
width: 200px;
background: linear-gradient(to bottom, darkgreen 99.9%, transparent 99.9%), radial-gradient(circle at 50% 50%, darkgreen 25%, transparent 30%);
background-position: 50% 0%, 50% 15px;
background-size: 5px 100%, 50px 50px;
background-repeat: no-repeat, repeat-y;
z-index: 1;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<div id='progress-bar'>
<div id='progress-now' value='1.85'></div>
</div>
Below is a version with fill-up animation effect.
window.onload = function() {
var val = 0, progress = 0;
function progressBar() {
val += 0.005;
progress = (val * 50 > 400) ? 400 : val * 50; /* 50 is 1/8th of height, 400 is height */
document.getElementById('progress-now').setAttribute('style', 'height: ' + progress + 'px');
if (val <= 8) anim = window.requestAnimationFrame(progressBar);
}
progressBar();
}
#progress-bar {
position: relative;
height: 400px;
width: 200px;
background: linear-gradient(to bottom, lightgreen 99.9%, transparent 99.9%), radial-gradient(circle at 50% 50%, lightgreen 25%, transparent 30%);
background-position: 50% 0%, 50% 15px; /* 15px is 30% of 50px */
background-size: 5px 100%, 50px 50px; /* 5px is the thickness of the bar, 50px is 1/8th of the height */
background-repeat: no-repeat, repeat-y;
}
#progress-now {
position: absolute;
width: 200px;
background: linear-gradient(to bottom, darkgreen 99.9%, transparent 99.9%), radial-gradient(circle at 50% 50%, darkgreen 25%, transparent 30%);
background-position: 50% 0%, 50% 15px;
background-size: 5px 100%, 50px 50px;
background-repeat: no-repeat, repeat-y;
z-index: 1;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<div id='progress-bar'>
<div id='progress-now'></div>
</div>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With