将JQuery代码更改为Vanila Javascript

时间:2017-01-04 07:46:33

标签: javascript javascript-events javascript-objects

我想在vanila javascript中使用此代码 这是我的代码:

$("html, body").animate({ scrollTop: $(document).height() }, 1000);

THX

1 个答案:

答案 0 :(得分:0)

要抓住您想要抓取的内容,您可以使用:

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