How to create a pricing scroll bar!

Hi all,

Do you have any idea how to create a pricing scroll bar like Pricing | Proof Experiences and Pulse in webflow?
Is it possible without custom code?

Thanks

Hi,

No way to solve this without custom code (The data changed based on the scroll position).

In your reference this is simple tab menu (6 tabs). “go to tab X when the value range is Y”. Good start.

You could create the entire structure/design/data under webflow and only change tabs by code.

Basic “not real code” outline:

on slide change --> set slider position
then:
if(100 > slider-position > 50){
show tab2
}
else{
show tab 3
}
1 Like