Skip to main content

flip()v4.0.54

A presentation where the exiting slide flips by 180 degrees, revealing the next slide on the back side.

Example

SlideTransition.tsx
tsx
import { linearTiming, TransitionSeries } from"@remotion/transitions";
import { flip } from"@remotion/transitions/flip";
constBasicTransition= () => {
return (
<TransitionSeries>
<TransitionSeries.SequencedurationInFrames={40}>
<Lettercolor="#0b84f3">A</Letter>
</TransitionSeries.Sequence>
<TransitionSeries.Transition
presentation={flip()}
timing={linearTiming({ durationInFrames: 30 })}
/>
<TransitionSeries.SequencedurationInFrames={60}>
<Lettercolor="pink">B</Letter>
</TransitionSeries.Sequence>
</TransitionSeries>
);
};

API

Takes an object with the following properties:

direction

One of from-left, from-right, from-top, from-bottom.

TypeScript type
tsx
import { FlipDirection } from"@remotion/transitions/flip";
constflipDirection:FlipDirection="from-left";

perspective?

The CSS perspective of the flip animation. Defaults to 1000.

outerEnterStyle?v4.0.84

The style of the outer element when the scene is is entering.

outerExitStyle?v4.0.84

The style of the outer element when the scene is exiting.

innerEnterStyle?v4.0.84

The style of the inner element when the scene is entering.

innerExitStyle?v4.0.84

The style of the inner element when the scene is exiting.

See also

AltStyle によって変換されたページ (->オリジナル) /