JS 및 jquery는 페이지 크기, 스크롤 막대 위치 및 요소 위치를 가져옵니다
function GetPageSize() {
var scrW, scrH;
if(window.innerHeight && window.scrollMaxY)
{ // Mozilla
scrW = window.innerWidth window.scrollMaxX; >scrH = window.innerHeight window.scrollMaxY;
}
else if(document.body.scrollHeight > document.body.offsetHeight)
{ // IE Mac을 제외한 모두
scrW = document. body.scrollWidth;
scrH = document.body.scrollHeight;
} else if(document.body)
{ // IE Mac
scrW = document.body.offsetWidth; document.body.offsetHeight;
}
var winW, winH;
if(window.innerHeight)
{ // IE를 제외한 모두
winW = window.innerWidth; window.innerHeight;
} else if (document.documentElement && document.documentElement.clientHeight)
{ // IE 6 엄격 모드
winW = document.documentElement.clientWidth
winH = document.documentElement; .clientHeight;
} else if (document.body) { // other
winW = document.body.clientWidth;
winH = document.body.clientHeight
} // 전체 크기는 뷰포트보다 작습니다.
var pageW = (scrW
};
function GetPageScroll()
{ var x, y; if(window.pageYOffset) { / / IE를 제외한 모든
y = window.pageYOffset;
x = window.pageXOffset
} else if(document.documentElement && document.documentElement.scrollTop)
{ // IE 6 엄격
y = document.documentElement.scrollTop;
x = document.documentElement.scrollLeft;
} else if(document.body) { // 기타 모든 IE
y = document.body.scrollTop; >x = document.body.scrollLeft;
}
return {X:x, Y:y};
}
jquery
위쪽에서 스크롤 막대의 세로 높이 가져오기: $(document).scrollTop();
왼쪽에서 스크롤 막대의 세로 너비 가져오기: $(document).scrollLeft(); >
오프셋 메서드는 묶음 집합의 첫 번째 요소에 대한 오프셋 정보를 반환하는 매우 유용한 메서드입니다. 기본적으로 본체에 대한 오프셋 정보입니다. 결과에는 top과 left라는 두 가지 속성이 포함됩니다.
options.relativeTo 계산된 오프셋 위치를 기준으로 조상 요소를 지정합니다. 이 요소는 상대적으로 또는 절대적으로 배치되어야 합니다. 생략하면 본문을 기준으로 합니다. options.scroll 스크롤 막대 포함 여부, 기본값은 TRUE
options.padding 패딩 포함 여부, 기본값은 false options.margin 여백 포함 여부, 기본값은 true
options .border 테두리 포함 여부, 기본값은 true