Chapter 574: dotGrid()
Core Idea
_Part of the @remotion/effects package.
Key Concepts
- Preview
- Example
- API
- dotSize?
- gridSize?
- invert?
- disabled?
- Requirements
Code Examples
export const MyComp: React.FC = () => {
return (
<AbsoluteFill>
<Video
src="https://remotion.media/video.mp4"
effects={[
dotGrid({
dotSize: 16,
gridSize: 20,
}),
]}
/>
</AbsoluteFill>
);
};
- What it demonstrates: Usage pattern for dotGrid() from the official docs.
Key Takeaways
- Understand preview when working with dotGrid().
- Understand example when working with dotGrid().
- Understand api when working with dotGrid().
- Understand dotsize? when working with dotGrid().
- Understand gridsize? when working with dotGrid().
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.