Capítulo 606 de 988

Chapter 606: radialProgressiveBlur()

Core Idea

_Part of the @remotion/effects package.

Key Concepts

  • Preview
  • Example
  • API
  • center?
  • width?
  • height?
  • rotation?
  • start?

Code Examples

export const MyComp: React.FC = () => {
  return (
    <AbsoluteFill>
      <Video
        src="https://remotion.media/video.mp4"
        effects={[
          radialProgressiveBlur({
            center: [0.48, 0.5],
            width: 1.29,
            height: 1,
            rotation: 0,
            start: 0.75,
            startBlur: 0,
            endBlur: 200,
          }),
        ]}
      />
    </AbsoluteFill>
  );
};
  • What it demonstrates: Usage pattern for radialProgressiveBlur() from the official docs.

Key Takeaways

  1. Understand preview when working with radialProgressiveBlur().
  2. Understand example when working with radialProgressiveBlur().
  3. Understand api when working with radialProgressiveBlur().
  4. Understand center? when working with radialProgressiveBlur().
  5. Understand width? when working with radialProgressiveBlur().

Connects To

  • Animated Emoji: related page in the Effects Library section.
  • get Available Emoji: related page in the Effects Library section.
  • api: related page in the Effects Library section.