()
| 1670 | const enterCleanups = /* @__PURE__ */ new WeakMap(); |
| 1671 | const lastRect = /* @__PURE__ */ new WeakMap(); |
| 1672 | function bounceIn(el, triggerBtn) { |
| 1673 | if (!el || !enabled) return; |
| 1674 | if (triggerBtn?.id === "glowify-settings-btn") return; |
| 1675 | enterCleanups.get(el)?.(); |
| 1676 | el.classList.remove(RUN_CLASS); |
| 1677 | el.classList.add(BASE_CLASS, START_CLASS); |
| 1678 | void el.offsetWidth; |
| 1679 | el.classList.remove(START_CLASS); |
| 1680 | el.classList.add(RUN_CLASS); |
| 1681 | const done = () => { |