Capítulo 633 de 988
_Part of the @remotion/effects package.
export const MyComp: React.FC = () => {
const frame = useCurrentFrame();
return (
<AbsoluteFill>
<Solid
width={1280}
height={720}
effects={[
zigzag({
colors: ['#d7b8ff', 'transparent'],
direction: 'horizontal',
thickness: 40,
gap: 0,
angle: 0,
offset: frame * 2,
amplitude: 40,
wavelength: 160,
}),
]}
/>
</AbsoluteFill>
);
};