首页 > 代码库 > html

html

scroll详解:

  window.innerHeight  document.documentElement.clientHeight   // 可视区域的高度

  document.body.clientHeight  // body高度

  scroll的属性 scrollTop scrollHeight (scroll是一个点)

  scrollHeight = document.body.clientHeight -  document.documentElement.clientHeight  (只有容器装不下才会有滚动条,scrollHeight指滚动条可滑动的距离)

    (例如scrollHeight = 400 ,scrollTop到400就到底了)

html