UNPKG

@writ/utils

Version:
10 lines (9 loc) 296 B
'use strict'; // 获取页面高度 export default function getPageHeight() { var g = document, a = g.body, f = g.documentElement, d = g.compatMode == "BackCompat" ? a : g.documentElement; return Math.max(f.scrollHeight, a.scrollHeight, d.clientHeight); }