> ## 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.

# Scramble Reveal

> A deterministic hacker-style text reveal that cycles fixed glyph rows and locks the target string from left to right.

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="scramble-reveal 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/scramble-reveal.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/scramble-reveal.png");document.body.appendChild(p)});<\/script></body></html>`} />

## Install

<InstallCommand command="npx hyperframes add scramble-reveal" />

That writes one file: `compositions/components/scramble-reveal.html`.

## Paste it into your composition

Open `compositions/components/scramble-reveal.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                                                                    |
| -------- | ------------- | ------------------------- | ------------------------------------------------------------------------------- |
| `text`   | `HYPERFRAMES` | string                    | Target string that resolves from deterministic wrong glyphs.                    |
| `accent` | `green`       | `green`, `blue`, `violet` | Color used by the text, prefix, and optional terminal frame.                    |
| `style`  | `terminal`    | `terminal`, `clean`       | Terminal frame or clean text-only presentation.                                 |
| `exit`   | `none`        | `none`, `fade`, `up`      | Optional departure. Default none: the locked string holds until the frame cuts. |

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="scramble-reveal"
  data-composition-src="compositions/components/scramble-reveal.html"
  data-variable-values='{"text":"HYPERFRAMES","accent":"green","style":"terminal","exit":"none"}'
></div>
```

## Source

<Accordion title={`scramble-reveal.html`}>
  ```html theme={null}
  <!doctype html>
  <!--
    scramble-reveal: HyperFrames video primitive (text effects / reveal)

    A target string begins as deterministic wrong glyphs, then resolves one
    character at a time from left to right. Every visible frame comes from one
    fixed-seed LCG table built before the timeline is registered.

    Variables:
      - text (string, default "HYPERFRAMES"): the target string.
      - accent (green | blue | violet, default "green"): text and frame color.
      - style (terminal | clean, default "terminal"): optional terminal frame.
      - exit (none | fade | up, default "none"): optional departure.

    Envelope, fixed IN and OUT with elastic HOLD only:
      IN_BASE  = 1.65s, curved arrival and the complete left-to-right lock
      HOLD     = max(0, D - IN - OUT), subtle drift followed by 0.30s stillness
      OUT_BASE = 0.45s departure when exit is fade or up, 0s when exit is
                 none (the default: the locked string holds until the cut)
      If D is shorter than IN_BASE + OUT_BASE, IN and OUT compress together.
      The timeline is never time-scaled.

    Determinism: frameTable is computed exactly once during synchronous
    timeline construction from fixed LCG seed 0x27c0ffee. Timeline sets only
    read authored rows from that table, so repeated or reverse seeks produce
    the same string for the same time.

    Mount contract: the runtime clones only this template. #root fills the host
    box, establishes the container query basis, has no data-width or data-height,
    and registers one paused timeline under the literal scramble-reveal key.
  -->
  <html
    lang="en"
    data-composition-id="scramble-reveal"
    data-composition-duration="3"
    data-composition-variables='[
      { "id": "text", "type": "string", "role": "content", "label": "Text", "description": "Target string that resolves from deterministic wrong glyphs.", "default": "HYPERFRAMES" },
      { "id": "accent", "type": "enum", "role": "style", "label": "Accent", "description": "Color used by the text, prefix, and optional terminal frame.", "default": "green", "options": [{ "value": "green", "label": "Green" }, { "value": "blue", "label": "Blue" }, { "value": "violet", "label": "Violet" }] },
      { "id": "style", "type": "enum", "role": "style", "label": "Style", "description": "Terminal frame or clean text-only presentation.", "default": "terminal", "options": [{ "value": "terminal", "label": "Terminal" }, { "value": "clean", "label": "Clean" }] },
      { "id": "exit", "type": "enum", "role": "timing", "label": "Exit", "description": "Optional departure. Default none: the locked string holds until the frame cuts.", "default": "none", "options": [{ "value": "none", "label": "None" }, { "value": "fade", "label": "Fade" }, { "value": "up", "label": "Up" }] }
    ]'
  >
    <head>
      <meta charset="UTF-8" />
      <title>Scramble Reveal</title>
    </head>
    <body>
      <template>
        <div id="root" data-composition-id="scramble-reveal" 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-mono, ui-monospace, "SF Mono", Menlo, Consolas, monospace);
              pointer-events: none;
            }

            .sr-clip {
              position: absolute;
              inset: 0;
              display: grid;
              place-items: center;
              overflow: hidden;
              background: var(--bg, transparent);
            }

            .sr-stage {
              display: block;
              width: 88cqw;
              max-width: 88cqw;
              will-change: transform, opacity;
            }

            .sr-shell {
              display: flex;
              align-items: center;
              justify-content: center;
              width: 100%;
              min-height: 34cqh;
              padding: var(--space-3, 5cqh) var(--space-3, 5cqw);
              overflow: hidden;
              border: 0.16cqmin solid color-mix(in srgb, var(--sr-accent) 58%, var(--border, #475569));
              border-radius: var(--radius, 2.4cqmin);
              background: color-mix(in srgb, var(--surface, #0b1016) 92%, var(--sr-accent));
              box-shadow:
                0 3.5cqh 10cqh color-mix(in srgb, var(--bg, #000000) 42%, transparent),
                inset 0 0 4cqh color-mix(in srgb, var(--sr-accent) 7%, transparent);
            }

            .sr-prefix {
              flex: 0 0 auto;
              margin-right: var(--space-1, 1.8cqw);
              color: color-mix(in srgb, var(--sr-accent) 78%, var(--fg, #ffffff));
              font-size: calc(var(--sr-font-size) * 0.74);
              font-weight: 700;
              line-height: 1;
              opacity: 0.78;
            }

            .sr-text {
              display: block;
              min-width: 0;
              overflow: hidden;
              color: var(--sr-accent);
              font-size: var(--sr-font-size);
              font-weight: 780;
              line-height: 1;
              letter-spacing: 0.055em;
              text-align: center;
              text-shadow: 0 0 2.8cqh color-mix(in srgb, var(--sr-accent) 34%, transparent);
              white-space: pre;
            }

            .sr-stage.sr-clean .sr-shell {
              min-height: 26cqh;
              padding: var(--space-2, 3cqh) var(--space-2, 2cqw);
              border-color: transparent;
              background: transparent;
              box-shadow: none;
            }

            .sr-stage.sr-clean .sr-prefix {
              display: none;
            }
          </style>

          <div
            id="scramble-reveal-clip"
            class="sr-clip clip"
            data-start="0"
            data-duration="3"
            data-track-index="0"
          >
            <div class="sr-stage" role="img">
              <div class="sr-shell">
                <span class="sr-prefix" aria-hidden="true">&gt;_</span>
                <span class="sr-text" aria-hidden="true"></span>
              </div>
            </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 stage = root.querySelector(".sr-stage");
              var textElement = root.querySelector(".sr-text");
              var vars =
                window.__hyperframes && window.__hyperframes.getVariables
                  ? window.__hyperframes.getVariables()
                  : {};

              var text = vars.text == null ? "HYPERFRAMES" : String(vars.text);
              // Each enum choice routes to a DIFFERENT contract token so the
              // variable stays meaningful under a theme (green/blue/violet must
              // not collapse into one themed accent).
              var accentColors = {
                green: "var(--brand, #71f5a7)",
                blue: "var(--accent, #61a8ff)",
                violet: "var(--accent-2, #c5a3ff)",
              };
              var accent = Object.prototype.hasOwnProperty.call(accentColors, vars.accent)
                ? vars.accent
                : "green";
              var style = vars.style === "clean" ? "clean" : "terminal";
              var exit = vars.exit === "fade" || vars.exit === "up" ? vars.exit : "none";

              root.style.setProperty("--sr-accent", accentColors[accent]);
              stage.classList.toggle("sr-clean", style === "clean");
              stage.setAttribute("aria-label", text);

              var characters = Array.from(text);
              var fittedCqw = Math.min(11, 118 / Math.max(1, characters.length));
              root.style.setProperty("--sr-font-size", "min(" + fittedCqw.toFixed(3) + "cqw, 24cqh)");

              var IN_BASE = 1.65;
              var OUT_BASE = exit === "none" ? 0 : 0.45;
              var ARRIVAL_BASE = 0.42;
              var LOCK_TAIL_BASE = 0.15;
              var STILLNESS = 0.3;
              var FPS = 30;
              var duration = Math.max(0.001, parseFloat(root.dataset.duration || "3"));
              var totalBase = Math.max(0.001, IN_BASE + OUT_BASE);
              var scale = duration < totalBase ? duration / totalBase : 1;
              var IN = IN_BASE * scale;
              var OUT = OUT_BASE * scale;
              var ARRIVAL = ARRIVAL_BASE * scale;
              var LOCK_TAIL = LOCK_TAIL_BASE * scale;
              var HOLD = Math.max(0, duration - (IN + OUT));
              var HOLD_START = IN;
              var OUT_START = IN + HOLD;
              var REVEAL_DURATION = Math.max(0, IN - LOCK_TAIL);
              var lastFrame = Math.max(1, Math.round(REVEAL_DURATION * FPS));

              // The LCG and all character-state decisions live here. This IIFE
              // runs once before timeline construction, then only frameTable is
              // read. Lock frames are monotonic by character index, so the final
              // target resolves strictly from left to right.
              var frameTable = (function () {
                var glyphs = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789#$%&*+?<>";
                var state = 0x27c0ffee;
                var firstLockFrame = Math.min(lastFrame, Math.max(1, Math.round(0.2 * FPS * scale)));
                var lockFrames = characters.map(function (character, index) {
                  if (/\s/.test(character)) return 0;
                  var position = characters.length <= 1 ? 1 : index / (characters.length - 1);
                  return Math.round(firstLockFrame + position * (lastFrame - firstLockFrame));
                });
                var rows = [];

                for (var frame = 0; frame <= lastFrame; frame += 1) {
                  var row = characters
                    .map(function (character, index) {
                      if (/\s/.test(character) || frame >= lockFrames[index]) return character;

                      state = (Math.imul(1664525, state) + 1013904223) >>> 0;
                      var glyphIndex = state % glyphs.length;
                      var glyph = glyphs.charAt(glyphIndex);
                      if (glyph === character)
                        glyph = glyphs.charAt((glyphIndex + 1) % glyphs.length);
                      return glyph;
                    })
                    .join("");
                  rows.push(row);
                }

                return rows;
              })();

              gsap.set(stage, { opacity: 0, x: "-4cqw", y: "2.4cqh" });
              textElement.textContent = frameTable[0];

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

              // IN: independently eased axes form the arrival arc. The authored
              // frame rows then lock the target from left to right at 30 fps.
              tl.to(stage, { opacity: 1, duration: ARRIVAL, ease: "power2.out" }, 0);
              tl.to(stage, { x: "0cqw", duration: ARRIVAL, ease: "power3.out" }, 0);
              tl.to(stage, { y: "0cqh", duration: ARRIVAL, ease: "sine.inOut" }, 0);
              frameTable.forEach(function (row, frame) {
                tl.set(textElement, { textContent: row }, frame / FPS);
              });

              // HOLD: finite drift ends with authored stillness before departure.
              var driftHalf = Math.max(0, HOLD - STILLNESS) / 2;
              if (driftHalf > 0) {
                tl.to(
                  stage,
                  {
                    y: "-0.55cqh",
                    duration: driftHalf,
                    ease: "sine.inOut",
                    yoyo: true,
                    repeat: 1,
                  },
                  HOLD_START,
                );
              }

              // OUT: optional departure; exit none holds until the frame cuts.
              // The up exit keeps the original curved arc departure.
              if (exit === "up") {
                tl.to(stage, { x: "5cqw", duration: OUT, ease: "power2.in" }, OUT_START);
                tl.to(stage, { y: "-3.5cqh", duration: OUT, ease: "sine.inOut" }, OUT_START);
                tl.to(stage, { opacity: 0, duration: OUT, ease: "power2.in" }, OUT_START);
              } else if (exit === "fade") {
                tl.to(stage, { opacity: 0, duration: OUT, ease: "power2.in" }, OUT_START);
              }

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

Tagged `motion-primitive` `text-effects` `scramble` `reveal` `deterministic`.

## 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

- [Matrix Decode](/catalog/components/caption-matrix-decode.md)
- [Panel Reveal](/catalog/components/panel-reveal.md)
- [Skeleton Reveal](/catalog/components/skeleton-reveal.md)
