> ## Documentation Index
> Fetch the complete documentation index at: https://hyperframes.heygen.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Physical Exit

> A card exits with physical momentum in toss, drop, or slide mode, carrying acceleration and rotation through the final offscreen pose without fading.

export const InstallCommand = ({command}) => {
  const [copied, setCopied] = React.useState(false);
  const copy = async () => {
    try {
      if (navigator.clipboard && window.isSecureContext) {
        await navigator.clipboard.writeText(command);
      } else {
        const previous = document.activeElement;
        const scratch = document.createElement("textarea");
        scratch.value = command;
        scratch.setAttribute("readonly", "");
        scratch.style.position = "fixed";
        scratch.style.opacity = "0";
        document.body.appendChild(scratch);
        scratch.select();
        document.execCommand("copy");
        document.body.removeChild(scratch);
        previous?.focus?.();
      }
      setCopied(true);
      setTimeout(() => setCopied(false), 2000);
    } catch {}
  };
  return <div className="hf-install-command not-prose my-4 flex items-stretch overflow-hidden rounded-xl border border-zinc-200 bg-zinc-50 dark:border-zinc-800 dark:bg-zinc-900">
      <code className="flex-1 overflow-x-auto whitespace-nowrap border-r border-zinc-200 px-4 py-3 font-mono text-sm text-zinc-800 dark:border-zinc-800 dark:text-zinc-100">
        {command}
      </code>
      <button type="button" onClick={copy} data-copied={copied ? "true" : "false"} aria-label={`Copy ${command} to the clipboard`} className="hf-install-copy">
        <svg className="hf-install-copy-clipboard" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 18 18" fill="none" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round" aria-hidden="true">
          <path d="M14.25 5.25H7.25C6.14543 5.25 5.25 6.14543 5.25 7.25V14.25C5.25 15.3546 6.14543 16.25 7.25 16.25H14.25C15.3546 16.25 16.25 15.3546 16.25 14.25V7.25C16.25 6.14543 15.3546 5.25 14.25 5.25Z" />
          <path d="M2.80103 11.998L1.77203 5.07397C1.61003 3.98097 2.36403 2.96397 3.45603 2.80197L10.38 1.77297C11.313 1.63397 12.19 2.16297 12.528 3.00097" />
        </svg>
        <svg className="hf-install-copy-check" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 18 18" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" aria-hidden="true">
          <path d="M2.75 9.5L6.5 13.25L15.25 4.5" />
        </svg>
      </button>
      <span className="hf-install-copy-status" role="status" aria-live="polite">
        {copied ? "Copied" : ""}
      </span>
    </div>;
};

<iframe className="w-full aspect-video rounded-xl border-0 bg-zinc-100 dark:bg-zinc-800" title="physical-exit preview" loading="lazy" srcDoc={`<!doctype html><html><head><meta charset="utf-8"><style>html,body{margin:0;height:100%;overflow:hidden;background:transparent}hyperframes-player{display:block;width:100%;height:100%}</style><script src="https://cdn.jsdelivr.net/npm/@hyperframes/player@0.7/dist/hyperframes-player.global.js"><\/script></head><body><script>fetch("/public/catalog/components/physical-exit.json").then(function(r){return r.json()}).then(function(d){var p=document.createElement("hyperframes-player");p.setAttribute("srcdoc",d.html);p.setAttribute("controls","");p.setAttribute("autoplay","");p.setAttribute("loop","");p.setAttribute("muted","");p.setAttribute("poster","https://static.heygen.ai/hyperframes-oss/docs/images/catalog/components/physical-exit.png");document.body.appendChild(p)});<\/script></body></html>`} />

## Install

<InstallCommand command="npx hyperframes add physical-exit" />

That writes one file: `compositions/components/physical-exit.html`.

## Paste it into your composition

Open `compositions/components/physical-exit.html` and copy what is inside into your own composition.

A component has no size or duration of its own. It takes both from the composition
you paste it into.

## Variables

Every one of these has a default, so the piece works untouched. Set the ones you
want to change on the element:

| Variable | Default | Accepts                   | What it does                                        |
| -------- | ------- | ------------------------- | --------------------------------------------------- |
| `mode`   | `toss`  | `toss`, `drop`, `slide`   | Physical behavior used to carry the card offscreen. |
| `text`   | `Later` | string                    | Word displayed on the exiting card.                 |
| `accent` | `green` | `green`, `blue`, `violet` | Color applied to the card edge.                     |

Set them with `data-variable-values` on the element that mounts it. These are the
defaults, so this behaves exactly like the preview above until you change one:

```html wrap theme={null}
<div
  data-composition-id="physical-exit"
  data-composition-src="compositions/components/physical-exit.html"
  data-variable-values='{"mode":"toss","text":"Later","accent":"green"}'
></div>
```

## Source

<Accordion title={`physical-exit.html`}>
  ```html theme={null}
  <!doctype html>
  <!--
    physical-exit: HyperFrames video primitive (motion / exit / physical)

    Concept: one card leaves the frame with visible momentum. The mode variable
    owns the exit behavior: toss follows an arc, drop accelerates under gravity,
    and slide stretches at peak lateral speed. Every mode carries rotation into
    its final offscreen pose. The card never fades during its exit.

    Variables:
      - mode (toss | drop | slide, default toss): the physical exit behavior.
      - text (string, default "Later"): the word displayed on the card.
      - accent (green | blue | violet, default green): the card edge color.

    Envelope (fixed IN and OUT, elastic HOLD only, never timeScale):
      IN_BASE  = 0.45s  the card settles into its resting pose
      HOLD     = elastic = max(0, D - (IN_BASE + OUT_BASE)); subtle drift
      OUT_BASE = 0.85s  the selected physical exit carries the card offscreen
      If D is shorter than IN_BASE + OUT_BASE, IN and OUT compress together and
      HOLD becomes zero.

    Mount contract: this file is a template-wrapped sub-composition. The runtime
    clones only the template contents. #root fills the host box, establishes the
    container query basis, has no data-width or data-height, and registers one
    paused timeline under the hardcoded physical-exit id.
  -->
  <html
    lang="en"
    data-composition-id="physical-exit"
    data-composition-duration="3"
    data-composition-variables='[
      { "id": "mode", "type": "enum", "role": "motion", "label": "Exit mode", "description": "Physical behavior used to carry the card offscreen.", "default": "toss", "options": [{ "value": "toss", "label": "Toss" }, { "value": "drop", "label": "Drop" }, { "value": "slide", "label": "Slide" }] },
      { "id": "text", "type": "string", "role": "content", "label": "Card text", "description": "Word displayed on the exiting card.", "default": "Later" },
      { "id": "accent", "type": "enum", "role": "style", "label": "Accent", "description": "Color applied to the card edge.", "default": "green", "options": [{ "value": "green", "label": "Green" }, { "value": "blue", "label": "Blue" }, { "value": "violet", "label": "Violet" }] }
    ]'
  >
    <head>
      <meta charset="UTF-8" />
      <title>Physical Exit</title>
    </head>
    <body>
      <template>
        <div id="root" data-composition-id="physical-exit" data-duration="3" data-fps="30">
          <style>
            *,
            *::before,
            *::after {
              box-sizing: border-box;
            }

            #root {
              position: absolute;
              inset: 0;
              overflow: hidden;
              container-type: size;
              isolation: isolate;
              color: var(--fg, #f8fafc);
              font-family: var(--font-body, Inter, system-ui, sans-serif);
              pointer-events: none;
            }

            .pe-clip {
              position: absolute;
              inset: 0;
              display: grid;
              place-items: center;
              overflow: hidden;
            }

            .pe-card {
              position: relative;
              display: grid;
              place-items: center;
              width: 58cqw;
              min-height: 32cqh;
              padding: 5cqh 6cqw;
              overflow: hidden;
              border: 0.22cqmin solid color-mix(in srgb, var(--pe-accent) 62%, #ffffff);
              border-radius: 4cqmin;
              background: #f8fafc;
              box-shadow:
                0 2.4cqh 7cqh color-mix(in srgb, #020617 48%, transparent),
                inset 1.2cqw 0 0 var(--pe-accent);
              color: #0b0c0e;
              transform-origin: 50% 50%;
              will-change: transform;
            }

            .pe-label {
              display: block;
              max-width: 48cqw;
              overflow: hidden;
              font-family: var(--font-display, Inter, system-ui, sans-serif);
              font-size: 11cqmin;
              font-weight: 760;
              line-height: 1;
              letter-spacing: -0.045em;
              text-align: center;
              text-overflow: ellipsis;
              white-space: nowrap;
            }
          </style>

          <div
            id="physical-exit-clip"
            class="pe-clip clip"
            data-start="0"
            data-duration="3"
            data-track-index="0"
          >
            <div class="pe-card">
              <span class="pe-label"></span>
            </div>
          </div>

          <script src="https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js"></script>
          <script>
            (function () {
              "use strict";

              var root = document.getElementById("root");
              var card = root.querySelector(".pe-card");
              var label = root.querySelector(".pe-label");
              var vars =
                window.__hyperframes && window.__hyperframes.getVariables
                  ? window.__hyperframes.getVariables()
                  : {};

              var mode = vars.mode === "drop" || vars.mode === "slide" ? vars.mode : "toss";
              var text = vars.text == null ? "Later" : String(vars.text);
              var accent = vars.accent === "blue" || vars.accent === "violet" ? vars.accent : "green";
              var accentColors = {
                green: "var(--brand, #34d399)",
                blue: "var(--accent, #60a5fa)",
                violet: "var(--accent-2, #a78bfa)",
              };

              label.textContent = text;
              card.style.setProperty("--pe-accent", accentColors[accent]);

              var IN_BASE = 0.45;
              var OUT_BASE = 0.85;
              var duration = Math.max(0.001, parseFloat(root.dataset.duration || "3"));
              var baseDuration = IN_BASE + OUT_BASE;
              var envelopeScale = duration < baseDuration ? duration / baseDuration : 1;
              var IN = IN_BASE * envelopeScale;
              var OUT = OUT_BASE * envelopeScale;
              var HOLD = Math.max(0, duration - IN - OUT);
              var HOLD_START = IN;
              var OUT_START = IN + HOLD;

              var tl = gsap.timeline({ paused: true });

              tl.fromTo(
                card,
                { y: "4cqh", scale: 0.98, rotation: -1 },
                { y: 0, scale: 1, rotation: 0, duration: IN, ease: "power2.out" },
                0,
              );

              if (HOLD > 0) {
                tl.to(
                  card,
                  {
                    y: "-0.7cqh",
                    rotation: 0.5,
                    duration: HOLD / 2,
                    ease: "sine.inOut",
                    yoyo: true,
                    repeat: 1,
                  },
                  HOLD_START,
                );
              }

              if (mode === "drop") {
                tl.to(
                  card,
                  {
                    y: "108cqh",
                    rotation: 9,
                    duration: OUT,
                    ease: "power2.in",
                  },
                  OUT_START,
                );
              } else if (mode === "slide") {
                var slidePeak = OUT * 0.72;
                tl.to(
                  card,
                  {
                    x: "90cqw",
                    skewX: -12,
                    scaleX: 1.08,
                    rotation: -2,
                    duration: slidePeak,
                    ease: "power4.in",
                  },
                  OUT_START,
                );
                tl.to(
                  card,
                  {
                    x: "125cqw",
                    skewX: -3,
                    scaleX: 1,
                    rotation: -5,
                    duration: OUT - slidePeak,
                    ease: "power4.out",
                  },
                  OUT_START + slidePeak,
                );
              } else {
                var tossApex = OUT * 0.42;
                tl.to(
                  card,
                  {
                    x: "34cqw",
                    y: "-36cqh",
                    rotation: 8,
                    duration: tossApex,
                    ease: "power3.out",
                  },
                  OUT_START,
                );
                tl.to(
                  card,
                  {
                    x: "118cqw",
                    y: "86cqh",
                    rotation: 18,
                    duration: OUT - tossApex,
                    ease: "power2.in",
                  },
                  OUT_START + tossApex,
                );
              }

              tl.seek(0);
              window.__timelines = window.__timelines || {};
              window.__timelines["physical-exit"] = tl;
            })();
          </script>
        </div>
      </template>
    </body>
  </html>
  ```
</Accordion>

Tagged `motion-primitive` `exit` `momentum` `toss` `drop` `slide`.

## Related topics

* [Browse the complete Catalog](/catalog)
* [Add assets and Catalog items in Studio](/studio/assets-and-blocks)
* [Build a richer composition](/go-further)


## Related topics

- [On-Screen Display Effect](/catalog/components/yt-screen-warp.md)
- [Device Frame Stage](/catalog/components/device-frame-stage.md)
- [Caption styles](/prompting/captions-catalog.md)
