//CSS
.parallax__progress progress {
position: fixed;
top: 0;
left: 0;
z-index: 1000;
width: 100%;
height: 5px;
border: none;
background: transparent;;
}
progress::-webkit-progress-bar {
background: transparent;
}
progress::-webkit-progress-value {
background: linear-gradient(to left, #db38b5,#01b3e3,#25ce7b,#fdc741,#ff6b01,#fc4236);
background-attachment: fixed;
}
progress::-moz-progress-bar {
background: linear-gradient(to left, #db38b5,#01b3e3,#25ce7b,#fdc741,#ff6b01,#fc4236);
background-attachment: fixed;
}
//GSAP script
gsap.to ("progress", {
value: 100,
ease: "none",
scrollTrigger: {scrub:0.3}
}) gsap.to ("progress", {
value: 100,
ease: "none",
scrollTrigger: {scrub:0.3}
})