tag."
Yes, you can auto-scroll the page in Webflow after a delay, and prevent it from interrupting users who have scrolled past the target point. This requires a bit of custom JavaScript embedded in your Webflow project.
#about
).#about
only if the user hasn't already scrolled past that section:<script> setTimeout(function () { var target = document.getElementById("about"); if (!target) return; var targetTop = target.getBoundingClientRect().top + window.pageYOffset; if (window.pageYOffset < targetTop - 100) { window.scrollTo({ top: targetTop, behavior: "smooth" }); } }, 5000);</script>
"about"
with the ID of your target section.100
) if needed to allow a small threshold past the section before canceling auto-scroll.To auto-scroll a Webflow page after a delay without interfering with user scroll, add a script that checks your scroll position before triggering smooth scrolling. This ensures a smooth experience and respects user interaction.