@furman1331/page-scroller
Version:
Amazing plugin for creating smooth scroll on your website
19 lines (14 loc) • 558 B
text/typescript
import { usePageScroller } from '../../usePageScroller'
import type { IPageScrollerOptions } from '@/types'
export function initializeTest(options?: IPageScrollerOptions) {
document.body.innerHTML = `
<div id="page-scoller">
<div class="section">Section 1</div>
<div class="section">Section 1</div>
</div>
`
initializePageScrollerForTestingPourposes(options)
}
function initializePageScrollerForTestingPourposes(options?: IPageScrollerOptions) {
usePageScroller(options).initPageScroller('#page-scoller')
}