This repository was archived by the owner on May 14, 2026. It is now read-only.
Streaming card dissolve: longer + actually pixelated - #25
Merged
Merged
Conversation
Two fixes bundled together because they're entangled: 1. The exit animation was getting truncated. setExitingSessions cleared the card from the DOM after 420ms, but the CSS animation ran 550ms, so the final ~25% never rendered. Bumped both sides to 1200ms. 2. The "pixel dissolve" was a feDisplacementMap warp, which wobbles pixels rather than chunking them. Replaced with 6 stepped filter variants that share a feTurbulence seed and shift the feFuncA intercept; each variant masks a progressively larger fraction of the source via feComposite operator="in". Same pixels disappear in the same order, just more of them at each step. Filter URLs don't interpolate, so the @Keyframes snap between variants for the chunky pixel-falling-off look. Enter timing also bumped to 1400ms. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Why
Existing animation was a smooth wobble (displacement map) that finished too fast to register. New version is a chunky pixel-dissolve — closer to a classic Photoshop dissolve / 8-bit fade than a film fade.
Test plan