-
-
Save nocodesupplyco/e4c53ddd751f1656a3767b1fdd7894cf to your computer and use it in GitHub Desktop.
Control Webflow Anchor Link Smooth Scroll
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Add these to the <body> element --> | |
<!-- 1 equals default speed, <1 is faster, >1 is slower --> | |
<body data-scroll-time = 1>...</body> | |
<!-- Attribute to turn off smooth scroll for people with prefers reduced motion on --> | |
<body data-wf-reduce-scroll-motion="none">...</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Apply this to project settings, before </body> custom code to apply to all pages --> | |
$(function() { | |
document.body.setAttribute('data-wf-reduce-scroll-motion') | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment