I want to build something like the “How to host with Webflow” Section on Reliable and lighting-fast website hosting service | Webflow
Tried hard, but no chance. Is there a Template or Tutorial available?
cheers
chris
I want to build something like the “How to host with Webflow” Section on Reliable and lighting-fast website hosting service | Webflow
Tried hard, but no chance. Is there a Template or Tutorial available?
cheers
chris
Hi @wilbourge
let us see what you have done so far.
Please share a read-only link of your project:
Thanks,
Matthias
I had a look on your project. Try to give your "div"s names. It’s tough for others to find items.
If this work, you can think about “scaling” an “opacity”
the animation part was what i was looking for …
I’ll help to get the final thing. But first you have to prepare it.
i started a new one
Yeah. Looks good.
all right.
but how can i do the animation part?
where do i set the animation, and how to build the color and scale effect as in the example above.
select every “slide”
go to transform and set
select every “slide” and set to “relative”
add the first slide a position top to “0”
the second slide to 10, the third to 20 and go on
select your section and add a “while scrolling in view” interaction
you saved my day! thanks a lot matthias!
i got another “unsolvable” … when i click the navigation it goes straight to a slide … perfect … but if i want to go back from slide 5 to slide 1 … it gets stuck
still have the problem with the navigation
and when i remove the 500 margin, every slide sticks together, how can i have more space between?
You can solve your navigation only with custom code.
<script>
$(document).ready(function() {
$(".your1button").mousedown(function() {
var positionSlide = $(".your1Slide").offset().top;
$('html, body').animate({scrollTop:positionSlide},"slow");
});
});
</script>
i tried to set it, but guess i did it wrong?