Capítulo 594 de 988

Chapter 594: linearProgressiveBlur()

Core Idea

_Part of the @remotion/effects package.

Key Concepts

  • Preview
  • Example
  • API
  • start?
  • end?
  • startBlur?
  • endBlur?
  • disabled?

Code Examples

export const MyComp: React.FC = () => {
  return (
    <AbsoluteFill>
      <Video
        src="https://remotion.media/video.mp4"
        effects={[
          linearProgressiveBlur({
            start: [0, 0.5],
            end: [1, 0.5],
            startBlur: 0,
            endBlur: 50,
          }),
        ]}
      />
    </AbsoluteFill>
  );
};
  • What it demonstrates: Usage pattern for linearProgressiveBlur() from the official docs.

Key Takeaways

  1. Understand preview when working with linearProgressiveBlur().
  2. Understand example when working with linearProgressiveBlur().
  3. Understand api when working with linearProgressiveBlur().
  4. Understand start? when working with linearProgressiveBlur().
  5. Understand end? when working with linearProgressiveBlur().

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.