isFixedPosition.mjs 230 B

12345678910
  1. export function isFixedPosition(el) {
  2. while (el) {
  3. if (window.getComputedStyle(el).position === 'fixed') {
  4. return true;
  5. }
  6. el = el.offsetParent;
  7. }
  8. return false;
  9. }
  10. //# sourceMappingURL=isFixedPosition.mjs.map