Overflow: Hidden
, add a flex-based wrapper, and insert content blocks.while scrolling in view
to animate horizontal movement.scrollTrigger
.Yes! You can create a horizontal scrolling section in Webflow using third-party tools or integrations like GSAP (GreenSock) or ScrollTrigger. Below is a step-by-step guide:
Div Block
) and set it to Overflow: Hidden
.Div Block
) inside the section and set its Display: Flex (Horizontal)
.while scrolling in view
interaction.Move
action to shift the wrapper on scroll.Load GSAP and ScrollTrigger:
Go to Project Settings > Custom Code > Inside and add:<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/ScrollTrigger.min.js"></script>
Add Custom Code in Webflow Page Settings (Before </body> tag
):
```js
gsap.registerPlugin(ScrollTrigger);
let container = document.querySelector(".your-wrapper-class");
gsap.to(container, {
x: "-100vw",
scrollTrigger: {
trigger: container,
start: "top top",
end: "+=3000px",
scrub: 1,
pin: true
}
});
```
Replace .your-wrapper-class
with your actual Div
class name.
scrub
and end
values.You can create a horizontal scrolling effect in Webflow using Webflow interactions for basic effects or GSAP + ScrollTrigger for more control. Use custom scripts inside Webflow’s Before tag section for a seamless integration.