├── .gitignore ├── README.md ├── package.json ├── preview ├── CircularWipe.tsx ├── Dissolve.tsx ├── FadeThroughColor.tsx ├── LinearWipe.tsx ├── Pan.tsx ├── Plate.tsx ├── Slide.tsx ├── SlidingDoors.tsx ├── index.tsx └── test-compositions │ ├── Fragments.tsx │ └── VideoTimeline.tsx ├── remotion.config.ts ├── src ├── TransitionSeries.tsx ├── components │ ├── FadeTransition.tsx │ ├── Sequence.tsx │ └── Transition.tsx ├── index.ts └── useCurrentTime.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | 4 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/package.json -------------------------------------------------------------------------------- /preview/CircularWipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/preview/CircularWipe.tsx -------------------------------------------------------------------------------- /preview/Dissolve.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/preview/Dissolve.tsx -------------------------------------------------------------------------------- /preview/FadeThroughColor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/preview/FadeThroughColor.tsx -------------------------------------------------------------------------------- /preview/LinearWipe.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/preview/LinearWipe.tsx -------------------------------------------------------------------------------- /preview/Pan.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/preview/Pan.tsx -------------------------------------------------------------------------------- /preview/Plate.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/preview/Plate.tsx -------------------------------------------------------------------------------- /preview/Slide.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/preview/Slide.tsx -------------------------------------------------------------------------------- /preview/SlidingDoors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/preview/SlidingDoors.tsx -------------------------------------------------------------------------------- /preview/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/preview/index.tsx -------------------------------------------------------------------------------- /preview/test-compositions/Fragments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/preview/test-compositions/Fragments.tsx -------------------------------------------------------------------------------- /preview/test-compositions/VideoTimeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/preview/test-compositions/VideoTimeline.tsx -------------------------------------------------------------------------------- /remotion.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/remotion.config.ts -------------------------------------------------------------------------------- /src/TransitionSeries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/src/TransitionSeries.tsx -------------------------------------------------------------------------------- /src/components/FadeTransition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/src/components/FadeTransition.tsx -------------------------------------------------------------------------------- /src/components/Sequence.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/src/components/Sequence.tsx -------------------------------------------------------------------------------- /src/components/Transition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/src/components/Transition.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from './TransitionSeries'; 2 | -------------------------------------------------------------------------------- /src/useCurrentTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/src/useCurrentTime.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcusstenbeck/remotion-transition-series/HEAD/tsconfig.json --------------------------------------------------------------------------------