DOM 요소를 자동으로 시야각으로 스크롤IntoView

1143 단어

개술


프로젝트에서 하나의DOM 요소를 자동으로 시야로 굴러야 하기 때문에 아무리 생각해도 이해할 수 없다. 마지막으로 요소 라이브러리에서 이 방법을 발견하여 나중에 개발할 때 참고하도록 기록하고 다른 사람에게도 유용할 것이라고 믿는다.참고 자료: element scroll-into-view.js

코드


코드는 다음과 같습니다.
/* eslint-disable no-param-reassign */
export default function scrollIntoView(container, selected) {
  if (!selected) {
    container.scrollTop = 0;
    return;
  }

  const offsetParents = [];
  let pointer = selected.offsetParent;
  while (pointer && container !== pointer && container.contains(pointer)) {
    offsetParents.push(pointer);
    pointer = pointer.offsetParent;
  }
  const top = selected.offsetTop + offsetParents.reduce((prev, curr) => (prev + curr.offsetTop), 0);
  const bottom = top + selected.offsetHeight;
  const viewRectTop = container.scrollTop;
  const viewRectBottom = viewRectTop + container.clientHeight;

  if (top < viewRectTop) {
    container.scrollTop = top;
  } else if (bottom > viewRectBottom) {
    container.scrollTop = bottom - container.clientHeight;
  }
}

전재 대상:https://www.cnblogs.com/yangzhou33/p/11140139.html

좋은 웹페이지 즐겨찾기