加給元素: offsetLeft(距離定位父級的距離)/offsetTop(距離定位父級的距離)/offsetWidth(可視寬度)/offHeight(可視高度) clientLeft(左邊框寬度)/clientTop(上邊框寬度)/clientWidth(width+padding)/clien ...
加給元素: offsetLeft(距離定位父級的距離)/offsetTop(距離定位父級的距離)/offsetWidth(可視寬度)/offHeight(可視高度) clientLeft(左邊框寬度)/clientTop(上邊框寬度)/clientWidth(width+padding)/clientHeight(height+padding) getBoundingClientRect() 返回值對象 left (元素左側相對於可視區左上角的距離) right(元素右側相對於可視區左上角的距離) top (元素上邊相對於可視區左上角的距離) bottom (元素底部相對於可視區左上角的距離) width (可視寬度) height (可視高度) scollTop(縱向滾動距離)/scollLeft(橫向滾動距離)/scollWidth(內容寬度)/scollHeight(內容高度) 獲取可視區寬高: window.innerWidth/window.innerHeight document.documentElement.clientWidth/document.documentElement.clientHeight 屏幕寬度:window.screen.wid 獲取文檔寬高: document.body.clientWidth/document.body.clientHeight document.documentElement.scrollHeight/document.documentElement.scrollWidth document.body.scrollHeight/dcth,window.screen.height ument.body.scrollWidth o 獲取滾動條距離: document.body.scrollTop/document.body.scrollLeft window.scrollY/window.scrollX document.documentElement.scrollTop/document.documentElement.scrollLeft window.pageYOffset/window.pageXOffset