npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

remotion-open-fx

v1.2.0

Published

A production-grade animation & effects library for Remotion — 30+ easings, physics springs, transitions, overlays, and kinetic components.

Readme

🎬 remotion-open-fx

A production-grade animation & effects library for Remotion. 30+ easings, physics springs, cinematic transitions, overlays, and kinetic components — built for human editors and AI agents alike.

🚀 Installation

npm install remotion-open-fx

Peer dependencies: react >= 18, remotion >= 4

📖 Table of Contents


⚡ Quick Start

import { AbsoluteFill, useCurrentFrame } from 'remotion';
import { fadeIn, slideInUp, SceneWrapper, VHSRetro } from 'remotion-open-fx';

export const MyScene = () => {
    const frame = useCurrentFrame();
    
    return (
        <SceneWrapper letterbox="2.35:1">
            <VHSRetro intensity={0.5}>
                <div style={fadeIn({ frame, durationFrames: 30 })}>
                    <h1 style={slideInUp({ frame, startFrame: 10 })}>
                        Hello Remotion
                    </h1>
                </div>
            </VHSRetro>
        </SceneWrapper>
    );
};

🛠 The Pattern

Every animation in remotion-fx is a pure function of the frame number. No internal state, no useEffect timers — just deterministic frames.

1. Animations return CSSProperties

Apply them directly to the style prop of any element.

const style = fadeIn({ frame, startFrame: 0, durationFrames: 30 });
<div style={style}>Content</div>

2. Transitions return styles for two elements

Used to animate between two sequences or layers.

const { outStyle, inStyle } = wipeLeft({ frame, startFrame: 60, durationFrames: 20 });
<div style={outStyle}>Outgoing</div>
<div style={inStyle}>Incoming</div>

✨ Animations

High-performance CSS-based animations.

Entrance Effects

fadeIn, slideInLeft, slideInRight, slideInUp, slideInDown, scaleIn, popIn, flipInY, flipInX, irisIn, flyIn, glideIn.

Usage:

const style = popIn({ 
    frame: useCurrentFrame(), 
    startFrame: 15, 
    durationFrames: 20 
});

Exit Effects

fadeOut, slideOutLeft, slideOutRight, slideOutUp, slideOutDown, scaleOut, irisOut, burstOut.

Attention Seekers

pulse, shake, bounce, wiggle, flash, swing, heartbeat, glimmer.


🔀 Transitions

Cinematic ways to move between clips.

Wipes & Zooms

  • Wipes: wipeLeft/Right/Up/Down, wipeDiagonal, barnDoors, irisTransition.
  • Zooms: crossDissolve, zoomIn/Out, pushLeft/Right, dollyZoom, flashCut.
  • Creative: rgbSplitTransition, pixelate, vhsRewind.

Example: Pixelate Transition

const { inStyle } = pixelate({ frame, startFrame: 45, durationFrames: 15 });
<div style={inStyle}>...</div>

📺 Video Effects

Production-grade filters to elevate your raw footage.

| Effect | Description | Props | | :--- | :--- | :--- | | VHSRetro | Classic 80s analog look | intensity, scanlineOpacity, colorFringing | | NeonGlow | Pulsating neon outline/glow | color, spread, intensity | | RGBSplit | Chromatic aberration shift | intensity, direction ("horizontal", "vertical", "diagonal") | | ShakeVibrate | Camera shake/jitter | intensity, speed | | LightLeak | Organic film light leaks | intensity, color | | Mirror | Simple symmetry effect | axis ("horizontal", "vertical"), position | | DreamBokeh | Soft focus with light orbs | particleCount, blurAmount, brightness | | OutlineDuotone | Stylized two-tone mapping | mode ("outline", "duotone"), colorLight, colorDark | | SpeedRamp | Variable playback speed | segments (array of {startFrame, endFrame, speed}) |

Example: Retro Setup

<VHSRetro intensity={0.8} scanlineOpacity={0.2}>
    <Video src={...} />
</VHSRetro>

🎨 Overlays & Cinematic

Static and dynamic layers for atmosphere.

  • Color Grades: <CinematicGrade>, <WarmGrade>, <CoolGrade>, <VintageGrade>.
  • Atmosphere: <Vignette>, <Letterbox>, <FilmGrain>, <Scanlines>.
  • Particles: <Confetti>, <DustParticles>, <Bokeh>.

🪝 Hooks & Utils

Programmable logic for custom animations.

  • useAnimatedValue: Multi-keyframe interpolation.
  • useSpring: Physics-based movement with presets (gentle, stiff, wobbly).
  • useTimeline: Declarative event-based timing.
  • useStagger: Simple per-item delay logic.

Spring Example:

const x = useSpring(frame, { 
    from: 0, 
    to: 100, 
    config: SpringPresets.wobbly 
});

🧩 Components

Pre-built UI blocks.

  • <AnimatedText>: Text reveal by character, word, or typewriter.
  • <KineticTitle>: High-impact animated title cards.
  • <ProgressBar>: Modern data visualization bars.
  • <SceneWrapper>: Global wrapper for letterboxing and safe zones.

📜 License

MIT © remotion-pak