UNPKG

ice.fo.utils

Version:

12 lines (10 loc) 288 B
export function scrollToElement (element, option = {}) { element.scrollIntoView({ behavior: 'smooth', ...option }) } export function bodyScroll (yes) { if (yes) { document.body.classList.remove('body_no_scroll') } else { document.body.classList.add('body_no_scroll') } }