scroll-wrapper) also set to 100vh. scroll-snap-type, scroll-snap-align, and optional smooth scroll behavior. To replicate the full-screen scroll-flipping effect (similar to Tumblr's old design) in Webflow, you'll need to use full-height sections and a page scroll snap effect via custom code or workaround techniques.
scroll-wrapper) and set:
Webflow doesn't support scroll snapping natively in the Designer, so you’ll need to add custom code via the Page Settings or inside an Embed element.
<head> and add the following CSS within a <style> element:
<style>
.scroll-wrapper {
scroll-snap-type: y mandatory;
overflow-y: scroll;
height: 100vh;
}
.scroll-wrapper > div {
scroll-snap-align: start;
height: 100vh;
}
</style>
scroll-wrapper matches the class name on your wrapper div, and each child section inside has 100vh height.
To ensure the default page scroll doesn’t interfere:
.scroll-wrapper, giving better control.
If you want smooth transitions between sections:
.scroll-wrapper {
scroll-behavior: smooth;
}
(This can be added inside the same <style> tag as above.)
To achieve a Tumblr-style section-flipping scroll effect in Webflow:
scroll-snap-type.scroll-snap-align and optional smooth scrolling.This creates a fluid, modern scroll experience where each section "snaps" into view as the user scrolls.