85453da49f
regression / regression-shards (style-16-prod style-9-prod style-17-prod iframe-render-compat variables-prod mp4-h265-sdr, shard-4) (push) Has been cancelled
regression / regression-shards (style-4-prod style-11-prod style-2-prod animejs-adapter typegpu-adapter parallel-capture-regression, shard-5) (push) Has been cancelled
regression / regression-shards (style-7-prod style-8-prod style-10-prod css-spinner-render-compat webm-transparency mp4-h264-sdr webm-vp9, shard-3) (push) Has been cancelled
regression / regression-shards (sub-composition-video style-18-prod raf-ball-render-compat font-variant-numeric sub-comp-t0 sub-comp-id-selector, shard-7) (push) Has been cancelled
Windows render verification / Detect changes (push) Has been cancelled
Windows render verification / Preflight (lint + format) (push) Has been cancelled
Windows render verification / Render on windows-latest (push) Has been cancelled
Windows render verification / Tests on windows-latest (push) Has been cancelled
CI / Detect changes (push) Has been cancelled
CI / Build (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Fallow audit (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Typecheck (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Producer: integration tests (push) Has been cancelled
CI / Producer: unit tests (push) Has been cancelled
CI / File size check (push) Has been cancelled
CI / Test: skills (push) Has been cancelled
CI / Skills: manifest in sync (push) Has been cancelled
CI / CLI: npx shim (macos-latest) (push) Has been cancelled
CI / CLI: npx shim (ubuntu-latest) (push) Has been cancelled
CI / CLI: npx shim (windows-latest) (push) Has been cancelled
CI / SDK: unit + contract + smoke (push) Has been cancelled
CI / Test: runtime contract (push) Has been cancelled
CI / Studio: load smoke (push) Has been cancelled
CI / Smoke: global install (push) Has been cancelled
CI / CLI smoke (required) (push) Has been cancelled
CI / Semantic PR title (push) Has been cancelled
Player perf / Detect changes (push) Has been cancelled
Player perf / Preflight (lint + format) (push) Has been cancelled
Player perf / player-perf (push) Has been cancelled
Player perf / Perf: drift (push) Has been cancelled
Player perf / Perf: fps (push) Has been cancelled
Player perf / Perf: parity (push) Has been cancelled
Player perf / Perf: scrub (push) Has been cancelled
Player perf / Perf: load (push) Has been cancelled
preview-regression / Detect changes (push) Has been cancelled
preview-regression / Preflight (lint + format) (push) Has been cancelled
preview-regression / Preview parity (push) Has been cancelled
preview-regression / preview-regression (push) Has been cancelled
regression / regression (push) Has been cancelled
regression / Detect changes (push) Has been cancelled
regression / Preflight (lint + format) (push) Has been cancelled
regression / regression-shards (hdr-regression style-5-prod style-3-prod mov-prores, shard-1) (push) Has been cancelled
regression / regression-shards (overlay-montage-prod style-12-prod chat missing-host-comp-id png-sequence portrait-edge-bleed, shard-6) (push) Has been cancelled
regression / regression-shards (style-13-prod style-6-prod vignelli-stacking gsap-letters-render-compat audio-mux-parity, shard-8) (push) Has been cancelled
regression / regression-shards (style-15-prod hdr-hlg-regression style-1-prod many-cuts vfr-screen-recording render-symlinked-assets, shard-2) (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Docs / Validate docs (push) Has been cancelled
Sync skills to ClawHub / Publish changed skills (push) Has been cancelled
118 lines
4.0 KiB
Markdown
118 lines
4.0 KiB
Markdown
---
|
|
name: hyperframes-lottie
|
|
description: Lottie and dotLottie adapter patterns for HyperFrames. Use when embedding lottie-web JSON animations, .lottie files, @lottiefiles/dotlottie-web players, registering instances on window.__hfLottie, or making After Effects exports deterministic in HyperFrames.
|
|
---
|
|
|
|
# Lottie for HyperFrames
|
|
|
|
HyperFrames can seek both `lottie-web` and dotLottie players through its `lottie` runtime adapter. Lottie is a strong fit because the animation timeline is already encoded in the asset; HyperFrames only needs a player object it can seek.
|
|
|
|
## Contract
|
|
|
|
- Load assets from local project files, usually under `assets/`.
|
|
- Set `autoplay: false`.
|
|
- Prefer `loop: false` unless the user explicitly wants a loop.
|
|
- Register every returned animation or player on `window.__hfLottie`.
|
|
- Keep the Lottie container dimensions stable with CSS.
|
|
|
|
The adapter seeks `lottie-web` with `goToAndStop(timeMs, false)` and dotLottie with frame or percentage APIs depending on player shape.
|
|
|
|
## lottie-web Pattern
|
|
|
|
```html
|
|
<div id="logo-lottie" class="lottie-layer"></div>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.12.2/lottie.min.js"></script>
|
|
<script>
|
|
const anim = lottie.loadAnimation({
|
|
container: document.getElementById("logo-lottie"),
|
|
renderer: "svg",
|
|
loop: false,
|
|
autoplay: false,
|
|
path: "assets/logo-reveal.json",
|
|
});
|
|
|
|
window.__hfLottie = window.__hfLottie || [];
|
|
window.__hfLottie.push(anim);
|
|
</script>
|
|
```
|
|
|
|
```css
|
|
.lottie-layer {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
```
|
|
|
|
## dotLottie Pattern
|
|
|
|
```html
|
|
<canvas id="product-lottie" class="lottie-canvas"></canvas>
|
|
<script src="https://unpkg.com/@lottiefiles/dotlottie-web"></script>
|
|
<script>
|
|
const player = new DotLottie({
|
|
canvas: document.getElementById("product-lottie"),
|
|
src: "assets/product-flow.lottie",
|
|
autoplay: false,
|
|
loop: false,
|
|
});
|
|
|
|
window.__hfLottie = window.__hfLottie || [];
|
|
window.__hfLottie.push(player);
|
|
</script>
|
|
```
|
|
|
|
```css
|
|
.lottie-canvas {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: block;
|
|
}
|
|
```
|
|
|
|
## Multiple Animations
|
|
|
|
Push each player into the same registry:
|
|
|
|
```js
|
|
window.__hfLottie = window.__hfLottie || [];
|
|
window.__hfLottie.push(backgroundAnim);
|
|
window.__hfLottie.push(iconAnim);
|
|
window.__hfLottie.push(confettiAnim);
|
|
```
|
|
|
|
HyperFrames seeks them all to the same composition time.
|
|
|
|
## Composition Duration
|
|
|
|
The render engine needs the composition's total length. GSAP timelines report duration automatically; a Lottie-only composition has no timeline object, so the runtime reads the registered animation's native length directly — `totalFrames / frameRate` for `lottie-web`, or the player's own `duration` for dotLottie. `data-duration` on the root element is optional for Lottie compositions: as long as every animation is registered on `window.__hfLottie` (per the contract above), the runtime has a finite duration to work with even when you set `loop: true`.
|
|
|
|
## Good Uses
|
|
|
|
- After Effects exports that are already known to render correctly in lottie-web.
|
|
- Logo reveals, icon loops, decorative accents, and product UI motion.
|
|
- Translating Remotion Lottie usage into plain HyperFrames HTML.
|
|
|
|
## Avoid
|
|
|
|
- Relying on remote `path` URLs at render time.
|
|
- Starting playback with `play()`.
|
|
- Assuming unsupported After Effects effects will survive export. Test the JSON or `.lottie` file in a browser first.
|
|
- Loading a player asynchronously and registering it after HyperFrames validation has already inspected the page.
|
|
|
|
## Validation
|
|
|
|
After editing a Lottie composition:
|
|
|
|
```bash
|
|
npx hyperframes lint
|
|
npx hyperframes check
|
|
```
|
|
|
|
## Credits And References
|
|
|
|
- HyperFrames adapter source: `packages/core/src/runtime/adapters/lottie.ts`.
|
|
- Duration auto-inference: `packages/core/src/runtime/init.ts` (`resolveAdapterDurationFloorSeconds`), `getInferredDurationSeconds` in the adapter above.
|
|
- lottie-web by Airbnb: https://github.com/airbnb/lottie-web
|
|
- lottie-web `loadAnimation` options: https://github.com/airbnb/lottie-web/wiki/loadAnimation-options
|
|
- dotLottie web player methods by LottieFiles: https://developers.lottiefiles.com/docs/dotlottie-player/dotlottie-web/methods
|