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
- Understand preview when working with radialProgressiveBlur().
- Understand example when working with radialProgressiveBlur().
- Understand api when working with radialProgressiveBlur().
- Understand center? when working with radialProgressiveBlur().
- 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.