Capítulo 621 de 988

Chapter 621: tile()

Core Idea

_Part of the @remotion/effects package.

Key Concepts

  • Preview
  • Example
  • API
  • horizontal?
  • vertical?
  • disabled?
  • Compatibility
  • See also

Code Examples

export const MyComp: React.FC = () => {
  return (
    <AbsoluteFill>
      <Video
        src="https://remotion.media/video.mp4"
        effects={[
          scale({scale: 0.25}),
          tile(),
        ]}
      />
    </AbsoluteFill>
  );
};
  • What it demonstrates: Usage pattern for tile() from the official docs.

Key Takeaways

  1. Understand preview when working with tile().
  2. Understand example when working with tile().
  3. Understand api when working with tile().
  4. Understand horizontal? when working with tile().
  5. Understand vertical? when working with tile().

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.