INNER CODE UNIT · JavaScript

element

ensisoft/detonator · docu/OpenGL Camera_files/songho.js:148

        element = element.offsetParent; // next
    }
    return {x:x, y:y};
}



///////////////////////////////////////////////////////////////////////////////
// compute the scroll offset of the page
///////////////////////////////////////////////////////////////////////////////
function getScrollOffset()
{
    let x = window.pageXOffset || document.documentElement.scrollLeft;
    let y = window.pageYOffset || document.documentElement.scrollTop;
    return {x:x, y:y};
}

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…