forked from shoutem/animation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZoomOut.js
More file actions
73 lines (71 loc) · 1.81 KB
/
Copy pathZoomOut.js
File metadata and controls
73 lines (71 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import React, { Component } from 'react';
import { Animated, View } from 'react-native';
import { DriverShape } from './DriverShape';
/*
* ZoomOut Component adds zoom out effect to its children components.
* Connect it to driver and pass the input range to animate it.
* e.g.:
* ...
* const driver = new ScrollDriver();
*
* return (
* <ScrollView
* {...driver.scrollViewProps}
* >
* <ZoomOut
* driver={driver}
* inputRange={[100,150]}
* maxFactor={1.5}
* >
* <Image />
* </ZoomOut>
* </ScrollView>
* );
*
* ...
* Above code will create scroll dependent zoom out animation over Image component
* from scroll 100, to scroll 150 where image is scaled by maxFactor at scroll 100,
* and has original size at scroll 150
*/
export class ZoomOut extends Component {
static propTypes = {
/**
* An instance of animation driver, usually ScrollDriver
*/
driver: DriverShape.isRequired,
/**
* Components to which an effect will be applied
*/
children: React.PropTypes.node,
/**
* pair of [start, end] values from animation driver, how
* children would zoom out from maxFactor
*/
inputRange: React.PropTypes.array,
/**
* from which factor children would zoom out
*/
maxFactor: React.PropTypes.number,
style: React.PropTypes.object,
}
render() {
const { driver, children, inputRange = [0, 1], maxFactor = 1.5, style } = this.props;
return (
<Animated.View
style={[style, {
transform: [
{
scale: driver.value.interpolate({
inputRange,
outputRange: [maxFactor, 1],
extrapolateRight: 'clamp',
}),
},
],
}]}
>
{children}
</Animated.View>
);
}
}