要抓住您想要抓取的内容,您可以使用:
document.querySelectorAll("html, body")
要获取文档高度,您可以使用(来自this post):
Math.max(
document.body.scrollHeight,
document.body.offsetHeight,
document.documentElement.clientHeight,
document.documentElement.scrollHeight,
document.documentElement.offsetHeight
);
对于动画部分,我建议查看this post。