A teeny tiny, standard compliant, smooth scroll script with ease-in-out effect and no dependancy.
smoothScroll will tie all your internal links to a handler that will produce a smooth scroll to their target instead of an instant jump. It also returns an API that you can use to call a smooth scroll yourself.
This works in Firefox, Chrome, IE10, Opera and Safari. Unsupported browsers would just use the normal internal link behaviour.
Just include smoothscroll inside your page, like this:
<script type="text/javascript" src="path/to/smoothscroll.min.js"></script>
All your internal links will be tied to a smooth scroll. If you want to call a smooth scroll from your code, you can now use the API by calling:
window.smoothScroll(target, duration, callback, context)
where:
target
is a HTMLElement Object
from your document that you want to scroll to, or a numeric position on the pageduration
is the total duration of the scroll (optional, defaults to 500ms)callback
is a function to be executed when the scrolling is over (optional)context
is the scrolling context (optional, defaults to window, can be any HTMLElement Object
)Alternatively, you can install smoothscroll as a dependency using npm:
npm install --save smoothscroll
Example usage as a module, binding to a custom element:
var smoothScroll = require('smoothscroll');
var exampleBtn = document.querySelector('.example-button');
var exampleDestination = document.querySelector('.example-destination');
// This function can easily be an onClick handler in React components
var handleClick = function(event) {
event.preventDefault();
smoothScroll(exampleDestination);
};
exampleBtn.addEventListener('click', handleClick);
Here are some indications if you want to tweak the code to fit your needs:
There is an ease-in-out type timing function. You can change it quite easily in the code. Here is where I found the one I use:
You can also change the default duration of a scroll, which is 500ms by default.
My code is heavily commented so you shoudn't lose yourself too much.
The example.html file is basically the script applied to a w3c page. I just changed the style so the table of content is fixed to the left.
Check out the result. Wouldn't it be great if all w3c specs where that easy to navigate in?
While I was looking for a name for this script, I found these sites. If this script is not what you need, you might have more luck there:
This library is released under the MIT license.
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。