Capítulo 617 de 988

Chapter 617: skew()

Core Idea

_Part of the @remotion/effects package.

Key Concepts

  • Preview
  • Example
  • API
  • x?
  • y?
  • origin?
  • disabled?
  • Requirements

Code Examples

export const MyComp: React.FC = () => {
  return (
    <AbsoluteFill>
      <Video
        src={staticFile('video.mp4')}
        effects={[skew({x: 24, y: 0, origin: [0.25, 0.5]})]}
      />
    </AbsoluteFill>
  );
};
  • What it demonstrates: Usage pattern for skew() from the official docs.

Key Takeaways

  1. Understand preview when working with skew().
  2. Understand example when working with skew().
  3. Understand api when working with skew().
  4. Understand x? when working with skew().
  5. Understand y? when working with skew().

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.