> ## Documentation Index
> Fetch the complete documentation index at: https://hyperframes-fix-nested-composition-media-inpoint.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# North Korea Locked Down

> Realistic map zoom into North Korea with a red scribble circle, locked-down pop-up label, and reddish editorial wash.

export const InstallCommand = ({command, item}) => {
  const [copied, setCopied] = React.useState(false);
  const [tuned, setTuned] = React.useState("");
  React.useEffect(() => {
    if (!item) return;
    const read = () => {
      try {
        const raw = new URLSearchParams(window.location.search).get(`vars-${item}`);
        if (!raw) return setTuned("");
        const parsed = JSON.parse(raw);
        if (!parsed || typeof parsed !== "object" || Array.isArray(parsed)) return setTuned("");
        if (Object.keys(parsed).length === 0) return setTuned("");
        setTuned(` --vars '${JSON.stringify(parsed)}'`);
      } catch {
        setTuned("");
      }
    };
    read();
    window.addEventListener("hf-vars-changed", read);
    window.addEventListener("popstate", read);
    return () => {
      window.removeEventListener("hf-vars-changed", read);
      window.removeEventListener("popstate", read);
    };
  }, [item]);
  const fullCommand = `${command}${tuned}`;
  const copy = async () => {
    try {
      if (navigator.clipboard && window.isSecureContext) {
        await navigator.clipboard.writeText(fullCommand);
      } else {
        const previous = document.activeElement;
        const scratch = document.createElement("textarea");
        scratch.value = fullCommand;
        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">
        {fullCommand}
      </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="north-korea-locked-down 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/blocks/north-korea-locked-down.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/blocks/north-korea-locked-down.png");document.body.appendChild(p)});<\/script></body></html>`} />

## Install

<InstallCommand command="npx hyperframes add north-korea-locked-down" item="north-korea-locked-down" />

That writes `compositions/north-korea-locked-down.html`, plus 1 supporting file under `assets/`.

## Source

<Accordion title={`north-korea-locked-down.html`}>
  ```html theme={null}
  <!doctype html>
  <html lang="en">
    <head>
      <meta charset="UTF-8" />
      <meta name="viewport" content="width=1920, height=1080" />
      <script src="https://cdn.jsdelivr.net/npm/gsap@3.14.2/dist/gsap.min.js"></script>
      <style>
        * {
          box-sizing: border-box;
          margin: 0;
          padding: 0;
        }

        html,
        body {
          width: 1920px;
          height: 1080px;
          overflow: hidden;
          background: #eef3f4;
          font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
        }

        #root {
          position: relative;
          width: 1920px;
          height: 1080px;
          overflow: hidden;
          background: #eef3f4;
          color: #151515;
        }

        .camera {
          position: absolute;
          inset: 0;
          z-index: 0;
          transform-origin: 50% 51%;
          will-change: transform, filter;
        }

        .map {
          position: absolute;
          inset: 0;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

        .paper-depth {
          position: absolute;
          inset: 0;
          background:
            radial-gradient(circle at 52% 50%, rgba(255, 255, 255, 0.08), transparent 28%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(10, 20, 24, 0.12));
          mix-blend-mode: multiply;
          pointer-events: none;
        }

        .annotation {
          position: absolute;
          left: 652px;
          top: 235px;
          z-index: 4;
          width: 560px;
          height: 392px;
          overflow: visible;
          transform-origin: center;
          will-change: transform, opacity;
        }

        .scribble {
          position: absolute;
          inset: 0;
          width: 560px;
          height: 392px;
          overflow: visible;
        }

        .scribble path {
          fill: none;
          stroke: #e21d2f;
          stroke-linecap: round;
          stroke-linejoin: round;
          filter: drop-shadow(0 8px 12px rgba(226, 29, 47, 0.24));
        }

        #circle-a {
          stroke-width: 12;
          stroke-dasharray: 980;
          stroke-dashoffset: 980;
        }

        #circle-b {
          stroke-width: 6;
          opacity: 0.82;
          stroke-dasharray: 910;
          stroke-dashoffset: 910;
        }

        .label {
          position: absolute;
          left: 50%;
          top: -146px;
          transform: translateX(-50%) scale(0.82);
          transform-origin: 50% 100%;
          min-width: 370px;
          padding: 18px 26px 20px;
          border-radius: 18px;
          color: #ffffff;
          background: #111111;
          box-shadow:
            0 22px 54px rgba(25, 4, 7, 0.24),
            inset 0 0 0 1px rgba(255, 255, 255, 0.12);
          font-size: 60px;
          line-height: 0.9;
          font-weight: 900;
          letter-spacing: 0;
          text-align: center;
          text-transform: uppercase;
          opacity: 0;
        }

        .label::after {
          content: "";
          position: absolute;
          left: 50%;
          bottom: -16px;
          width: 32px;
          height: 32px;
          background: #111111;
          transform: translateX(-50%) rotate(45deg);
        }

        .red-wash {
          position: absolute;
          inset: 0;
          z-index: 2;
          background:
            radial-gradient(
              circle at 50% 48%,
              rgba(255, 59, 48, 0.3),
              rgba(255, 59, 48, 0.06) 42%,
              rgba(79, 0, 8, 0.22) 100%
            ),
            linear-gradient(90deg, rgba(99, 0, 12, 0.12), rgba(255, 59, 48, 0.2));
          opacity: 0;
          mix-blend-mode: multiply;
          pointer-events: none;
        }

        .scanline {
          position: absolute;
          inset: 0;
          z-index: 3;
          opacity: 0;
          background: repeating-linear-gradient(
            0deg,
            rgba(65, 0, 0, 0.12) 0,
            rgba(65, 0, 0, 0.12) 1px,
            transparent 1px,
            transparent 7px
          );
          mix-blend-mode: multiply;
          pointer-events: none;
        }

        .corner {
          position: absolute;
          z-index: 6;
          width: 84px;
          height: 84px;
          border-color: rgba(17, 17, 17, 0.62);
          opacity: 0;
        }

        .corner.tl {
          left: 86px;
          top: 78px;
          border-top: 5px solid;
          border-left: 5px solid;
        }

        .corner.tr {
          right: 86px;
          top: 78px;
          border-top: 5px solid;
          border-right: 5px solid;
        }

        .corner.bl {
          left: 86px;
          bottom: 78px;
          border-bottom: 5px solid;
          border-left: 5px solid;
        }

        .corner.br {
          right: 86px;
          bottom: 78px;
          border-bottom: 5px solid;
          border-right: 5px solid;
        }

        .attribution {
          position: absolute;
          right: 28px;
          bottom: 22px;
          z-index: 7;
          color: rgba(17, 17, 17, 0.44);
          font-size: 19px;
          font-weight: 650;
          opacity: 0.7;
        }
      </style>
    </head>
    <body>
      <div
        id="root"
        data-composition-id="north-korea-locked-down"
        data-root="true"
        data-start="0"
        data-duration="7"
        data-width="1920"
        data-height="1080"
      >
        <div id="camera" class="camera">
          <img class="map" src="assets/korea-map.png" alt="" />
          <div class="paper-depth"></div>
        </div>

        <div id="annotation" class="annotation">
          <div id="label" class="label">LOCKED<br />DOWN</div>
          <svg class="scribble" viewBox="0 0 560 392" aria-hidden="true" data-layout-ignore>
            <path
              id="circle-a"
              d="M 74 211 C 42 119 118 42 254 36 C 410 30 524 111 508 222 C 494 320 350 377 208 346 C 94 322 37 278 74 211"
            />
            <path
              id="circle-b"
              d="M 92 231 C 33 150 105 55 243 44 C 408 31 529 126 501 244 C 480 334 335 370 197 342 C 83 319 47 269 92 231"
            />
          </svg>
        </div>

        <div id="redWash" class="red-wash"></div>
        <div id="scanline" class="scanline"></div>
        <div class="corner tl"></div>
        <div class="corner tr"></div>
        <div class="corner bl"></div>
        <div class="corner br"></div>
        <div class="attribution">© OpenStreetMap contributors © CARTO</div>
      </div>

      <script>
        window.__timelines = window.__timelines || {};

        const tl = gsap.timeline({
          paused: true,
          defaults: { overwrite: "auto" },
        });

        tl.fromTo(
          "#camera",
          { scale: 0.92, x: -70, y: 18, filter: "saturate(0.92) contrast(0.98)" },
          {
            scale: 2.12,
            x: -56,
            y: -22,
            filter: "saturate(1.08) contrast(1.04)",
            duration: 3.18,
            ease: "expo.inOut",
          },
          0,
        );
        tl.to("#camera", { scale: 2.2, x: -44, y: -34, duration: 0.42, ease: "back.out(1.5)" }, 3.18);
        tl.from(
          ".corner",
          { opacity: 0, scale: 0.72, duration: 0.28, stagger: 0.035, ease: "power3.out" },
          0.42,
        );
        tl.to(".corner", { opacity: 0.72, duration: 0.18, ease: "power2.out" }, 1.2);
        tl.fromTo(
          "#annotation",
          { opacity: 0, scale: 0.92, x: 4, y: -4 },
          { opacity: 1, scale: 1, x: 0, y: 0, duration: 0.16, ease: "power2.out" },
          3.12,
        );
        tl.to("#circle-a", { strokeDashoffset: 0, duration: 0.62, ease: "power2.out" }, 3.24);
        tl.to("#circle-b", { strokeDashoffset: 0, duration: 0.44, ease: "power3.out" }, 3.46);
        tl.to("#label", { opacity: 1, scale: 1, duration: 0.28, ease: "back.out(2.1)" }, 3.78);
        tl.to("#redWash", { opacity: 1, duration: 0.24, ease: "power2.out" }, 3.82);
        tl.to("#scanline", { opacity: 0.44, duration: 0.18, ease: "none" }, 3.86);
        tl.to(
          "#annotation",
          { scale: 1.045, duration: 0.14, yoyo: true, repeat: 1, ease: "sine.inOut" },
          4.1,
        );
        tl.to("#camera", { scale: 2.06, x: -82, y: -8, duration: 2.35, ease: "sine.inOut" }, 4.2);
        tl.to("#redWash", { opacity: 0.82, duration: 2.35, ease: "sine.inOut" }, 4.2);
        tl.to(".corner", { opacity: 0.38, duration: 0.72, ease: "sine.inOut" }, 5.82);
        tl.to("#label", { y: -6, duration: 0.4, yoyo: true, repeat: 1, ease: "sine.inOut" }, 5.94);

        window.__timelines["north-korea-locked-down"] = tl;
      </script>
    </body>
  </html>
  ```
</Accordion>

## Usage

After installing, add the block to your host composition:

```html theme={null}
<div data-composition-id="north-korea-locked-down" data-composition-src="compositions/north-korea-locked-down.html" data-start="0" data-duration="7" data-track-index="1" data-width="1920" data-height="1080"></div>
```

Tagged `showcase` `map` `annotation` `youtube` `kinetic`.

Created by [Stronkter](https://x.com/Stronkter).

<Accordion title="The prompt this was built from">
  ```text theme={null}
  use 📷HyperFrames by HeyGen and Image Gen  if you need it for assets or like png images of assets without backround to make a youtube style camera moving in out and other things that are in youtube videos, to make a video of a map zooms in on north korea and a scribble style circle circles the country and a text pops up above it saying locked down when the text apears the video turns a bit redish make the video 7 seconds long id like the map to look realistic and accurate to real lfe
  ```
</Accordion>

## Related topics

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