Paper Texture
A white paper texture background with a slowly changing posterized seed.
Preview
Use it
Copy the source code into your Remotion project. The file exports the Element component. Preview dimensions, frame rate, and duration are supplied by the gallery.
Source
paper-texture.tsximport {paper } from '@remotion/effects/paper'; importReact from 'react'; import {interpolate ,Solid ,useCurrentFrame } from 'remotion'; export constPaperTexture :React .FC = () => { constframe =useCurrentFrame (); return ( <Solid color ="white"width ={1920}height ={1080}effects ={[paper ({colorFront : 'white',colorBack : 'white',seed :interpolate (frame , [0, 120], [0, 1000], {extrapolateLeft : 'clamp',extrapolateRight : 'clamp',posterize : 30, }), }), ]} /> ); };