mirror of
https://github.com/ipdb/website.git
synced 2024-12-02 06:07:09 +01:00
11 lines
250 B
JavaScript
11 lines
250 B
JavaScript
/* global SmoothScroll */
|
|
|
|
// =include _dnt.js
|
|
// =include smooth-scroll/dist/js/smooth-scroll.js
|
|
|
|
document.addEventListener('DOMContentLoaded', () => {
|
|
const scroll = new SmoothScroll('a[data-scroll]', {
|
|
easing: 'easeOutQuint'
|
|
})
|
|
})
|