JavaSprict基础-offset scroll client

三大家族

  • offset scroll client
  • 宽高属性
    offsetWidth:width+padding+border
    offsetHeight : height+padding+border
    scrollWidth:表示滚动的内容的宽度
    scrollHeight:表示滚动的内容的高度
    clientwidth: width+padding
    clientHeight: Height+padding
  • 位置属性
    offsetLeft:表示距离他的offsetParent的左侧的距离。
    scrollTop:表示距离顶部的滚动过的距离
    scrollleft:表示距离左侧的滚动过的距离
    clientLeft:表示距离左侧的border值
    clientTop:表示距离顶部的border值

你可能感兴趣的:(JavaSprict基础-offset scroll client)