All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.lib.util.isFixedPosition.mjs Maven / Gradle / Ivy

export function isFixedPosition(el) {
  while (el) {
    if (window.getComputedStyle(el).position === 'fixed') {
      return true;
    }
    el = el.offsetParent;
  }
  return false;
}
//# sourceMappingURL=isFixedPosition.mjs.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy