Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
動的な画像スクローラーを作成していますが、n 番目の親に対する要素のオフセット位置を呼び出す方法を知る必要があります。
何か案は?
function getRelativePosition( element, nthparent_of_element ){ var posParent = $(nthparent_of_element).position(); var posElement = $(element).position(); return { top: posElement.top - posParent.top, left: posElement.left - posParent.left}; }