UNPKG

always-helper

Version:

前端项目开发中,经常会用到一些工具函数的合集。

7 lines (6 loc) 179 B
/** * @description 判断是否进入可视区域 * allin 表示是否需要全部进入 */ declare const inview: (el: any, allin?: boolean) => boolean; export default inview;