Capítulo 607 de 988

Chapter 607: radialProgressivePixelate()

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={[
          radialProgressivePixelate({
            center: [0.5, 0.5],
            width: 1,
            height: 1,
            rotation: 0,
            start: 0.4,
            startBlockSize: 1,
            endBlockSize: 40,
          }),
        ]}
      />
    </AbsoluteFill>
  );
};
  • What it demonstrates: Usage pattern for radialProgressivePixelate() from the official docs.

Key Takeaways

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

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.