Presence Animations

Presence animations allow you to handle entry and exit animations for elements being added or removed from the DOM.

Syntax

To use exit animations Mercury uses the built-in Svelte transitions functionality. To make an element have presence, you must add the out:animateExit attribute. You can add inside the out:animateExit directive any parameter that you can use to the use:mercury action like animate and transition.

{#if isVisible}
  <div
    use:mercury={{
    animate:{scale:2}
    }}
    out:animateExit={{
    animate:{opacity:0, scale:0.5}
    }}
  >
    Presence Animation
  </div>
{/if}

Example