1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| function getViewPortWidth() { return document.documentElement.clientWidth || document.body.clientWidth; }
function getViewPortHeight() { return document.documentElement.clientHeight || document.body.clientHeight; }
function getScrollLeft() { return document.documentElement.scrollLeft || document.body.scrollLeft; }
function getScrollTop() { return document.documentElement.scrollTop || document.body.scrollTop; }
|