create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
86 lines (85 loc) • 2.98 kB
JavaScript
import { ComplexAnimationBuilder } from '../animationBuilder';
export class PinwheelIn extends ComplexAnimationBuilder {
constructor() {
super(...arguments);
this.build = () => {
const delayFunction = this.getDelayFunction();
const [animation, config] = this.getAnimationAndConfig();
const delay = this.getDelay();
const callback = this.callbackV;
return (_values) => {
'worklet';
return {
animations: {
opacity: delayFunction(delay, animation(1, config)),
transform: [
{
scale: delayFunction(delay, animation(1, config)),
},
{
rotate: delayFunction(delay, animation('0', config)),
},
],
},
initialValues: {
opacity: 0,
transform: [
{
scale: 0,
},
{
rotate: '5',
},
],
},
callback: callback,
};
};
};
}
static createInstance() {
return new PinwheelIn();
}
}
export class PinwheelOut extends ComplexAnimationBuilder {
constructor() {
super(...arguments);
this.build = () => {
const delayFunction = this.getDelayFunction();
const [animation, config] = this.getAnimationAndConfig();
const delay = this.getDelay();
const callback = this.callbackV;
return (_values) => {
'worklet';
return {
animations: {
opacity: delayFunction(delay, animation(0, config)),
transform: [
{
scale: delayFunction(delay, animation(0, config)),
},
{
rotate: delayFunction(delay, animation('5', config)),
},
],
},
initialValues: {
opacity: 1,
transform: [
{
scale: 1,
},
{
rotate: '0',
},
],
},
callback: callback,
};
};
};
}
static createInstance() {
return new PinwheelOut();
}
}