Capítulo 609 de 988
_Part of the @remotion/effects package.
export const MyComp: React.FC = () => {
const frame = useCurrentFrame();
return (
<AbsoluteFill>
<Solid
width={1280}
height={720}
effects={[
rings({
colors: ['#9fd6ff', 'transparent'],
center: [0.5, 0.5],
thickness: 40,
gap: 0,
offset: frame * 2,
}),
]}
/>
</AbsoluteFill>
);
};