Capítulo 596 de 988
_Part of the @remotion/effects package.
export const MyComp: React.FC = () => {
const frame = useCurrentFrame();
return (
<AbsoluteFill>
<Solid
width={1280}
height={720}
effects={[
lines({
colors: ['#dff4ff', '#7cc6ff'],
direction: 'horizontal',
thickness: 40,
gap: 24,
angle: 20,
offset: frame * 2,
}),
]}
/>
</AbsoluteFill>
);
};