UNPKG

dile-smooth-scroll

Version:

Webcomponent dile-smooth-scroll smooth scroll component

23 lines (19 loc) 692 B
import { LitElement } from 'lit-element'; import { DileSmoothScrollMixin } from './DileSmoothScrollMixin'; import { DileSmoothScrollElementMixin } from './DileSmoothScrollElementMixin'; export class DileSmoothScroll extends DileSmoothScrollMixin(DileSmoothScrollElementMixin(LitElement)) { static get properties() { return { scrollToElementOnInit: { type: String } }; } firstUpdated() { if(this.scrollToElementOnInit) { const el = document.getElementById(this.scrollToElementOnInit); if(el) { setTimeout( () => this.smoothScrollElementIntoView(el), 500); } } } } window.customElements.define('dile-smooth-scroll', DileSmoothScroll);