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