目的:想要使页面中的一部分区域随着页面的扩大缩小,进行高度的自适应。
用到的知识点:
1.获取高度的方法。
原文:https://blog.csdn.net/alokka/article/details/81458962
本身的宽高——width/height+padding
• clientWidth
• clientHeight
本身的宽高——width/height+padding+border
• offsetWidth
• offsetHeight
距离左侧和上部的距离,相对于窗口
• offsetLeft
• offsetTop
获取可以滚动的宽高(不包括border)如果内容宽高比本身小,该值为本身宽高,否则就是内容的宽高
• scrollWidth
• scrollHeight
获取滚动距离(左侧、上侧) 简单地说就是滚动后被隐藏的宽度/高度。
• scrollLeft
• scrollTop
相对于窗口左上角的点
• clientX
• clientY
相对于屏幕左上角的点(建议移动端使用)
• screenX
• screenY
相对于本身左上角的点
(非标准属性)
•offsetX
• offsetY
相对于整个文档左上角的点(建议移动端使用)
• pageX
• pageY
获取窗口的宽高
• document.body.clientWidth——(width+padding)
• document.body.clientHeight——(height+padding)
• document.body.offsetWidth——(width+padding+border)
• docuemnt.body.offsetHeight——(height+padding+border)
获取正文的宽高(可以滚动的宽高)
• document.body.scrollWidth
• docuemnt.body.scrollHeight
获取正文滚动距离
• document.body.scrollTop
• document.body.scrollLeft
获取屏幕分辨率宽高
• window.screen.width
• window.screen.height
获取左边框宽度和上边框宽度
• clientLeft
• clientTop
2.使用的Dom方法
属性名(只能识别HTML节点) 还可以记录(空格之类的)
children childNodes 获取子节点
childElementCount childNodes,length 获取子节点的长度
firstElementChild firstChild 获取子节点
lastElementChild lastChild 获取尾节点
nextElementSibling nextSibling 获取下一个节点
previousElementSibling previousSibling 获取上一个节点