This repo is forked from iamdustan/smoothscroll and rewritten with TypeScript.
# npm
npm install seamless-scroll-polyfill --save
# yarn
yarn add seamless-scroll-polyfill
import { polyfill } from "seamless-scroll-polyfill";
polyfill();
import { polyfill } from "seamless-scroll-polyfill/esm/Element.scrollIntoView.js";
polyfill();
import { elementScrollIntoView } from "seamless-scroll-polyfill";
elementScrollIntoView(document.querySelector("#target"), { behavior: "smooth", block: "center", inline: "center" });
<script src="https://cdn.jsdelivr.net/npm/seamless-scroll-polyfill@1.0.0/dist/es5/seamless.js"></script>
<script>
// patch all methods
seamless.polyfill();
// or use specific methods
seamless.windowScrollBy({ behavior: "smooth", top: 200, left: 0 });
seamless.elementScrollIntoView(document.querySelector("#target"), {
behavior: "smooth",
block: "center",
inline: "center",
});
</script>
<script
src="https://cdn.jsdelivr.net/npm/seamless-scroll-polyfill@1.0.0/dist/es5/seamless.auto-polyfill.min.js"
data-seamless
></script>
dir | dist/esm | dist/umd | dist/es6 | dist/cjs | dist/es5 |
---|---|---|---|---|---|
module format | ES Modules | UMD | UMD | CJS | UMD |
ES version | ESNext | ESNext | ES2015 | ES2015 | ES5 |