💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
### 尺寸及坐标 - 窗口尺寸、工作区尺寸 - 可视区尺寸 - `document.documentElement.clientWidth` - `document.documentElement.clientHeight` - 滚动距离 - `document.body.scrollTop`:旧版本 chrome 和没有 DOCTYPE 声明的 IE - `document.documentElement.scrollTop`:IE FF - 完美的获取 `scrollTop` 赋值短语 : `var scrollTop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop;`