要获取可滚动元素中の子元素坐标值,可以使用以下步骤:
获取可滚动元素及其子元素的引用:
const scrollableelement = document.queryselector('.pop'); const elements = scrollableelement.queryselectorall('li[pdata]');
使用 getboundingclientrect() 方法获取子元素相对可滚动元素的边界框:
for (let element of elements) { const rect = element.getboundingclientrect(); }
该 rect 对象包含子元素的顶部坐标值和其他有用的信息,例如:
- rect.top:子元素相对于可滚动元素顶部的距离
- rect.left:子元素相对于可滚动元素左边的距离
- rect.width:子元素的宽度
- rect.height:子元素的高度
要监测可滚动元素的滚动事件,可以使用 addeventlistener() 方法:
scrollableElement.addEventListener('scroll', () => { // 在这里处理滚动事件 });
此事件处理程序可在元素滚动时调用,你可以使用 scrolltop 和 scrollleft 属性来获取元素的当前滚动位置。