function getViewportHeight() { if (window.innerHeight!=window.undefine) return window.innerHeight; if (document.compatMode=='CSS1Compat') return document.documentElement.clientHeight; if (document.body) return document.body.clientHeight;
반환창.정의되지 않음; } function getViewportWidth() { if (window.innerWidth!=window.undefine) return window.innerWidth; if (document.compatMode=='CSS1Compat') return document.documentElement.clientWidth; if (document.body) return document.body.clientWidth;
반환창.정의되지 않음; }
/** * 실제 스크롤 상단 가져오기 */ function getScrollTop() { if (self.pageYOffset) // Explorer를 제외한 모두 { self를 반환합니다. 페이지Y오프셋; } else if (document.documentElement && document.documentElement.scrollTop) // Explorer 6 Strict { return document.documentElement.scrollTop; } else if (document.body) // 다른 모든 Explorer { return document.body.scrollTop; } } function getScrollLeft() { if (self.pageXOffset) // Explorer를 제외한 모두 { return self.pageXOffset; } else if (document.documentElement && document.documentElement.scrollLeft) // Explorer 6 Strict { return document.documentElement.scrollLeft; } else if (document.body) // 다른 모든 Explorer { return document.body.scrollLeft; } } /* [html] 동영상 사용 방법: 将ToolTip.js包含在网页body的结束标签后 사용 방법: [코드]