1.1.0 • Published 3 years ago

react-native-gyroscope-animation v1.1.0

Weekly downloads
572
License
MIT
Repository
github
Last release
3 years ago

Gyroscope animation effect for React Native

npm Version License

Gyroscope animation effect for React Native (iOS and Android)

This module is designed for easy implementation of interactive animation that responds to changing the position of the device in real time

Installing (React Native >= 0.60.0)

Install react-native-gyroscope-animation (latest):

yarn add react-native-gyroscope-animation react-native-sensors

or

npm i --save react-native-gyroscope-animation react-native-sensors

Usage

GyroscopeAnimation can be used in a declarative way:

import React from 'react';
import GyroscopeAnimation from 'react-native-gyroscope-animation';
import Logo from './assets/images/logo.png';

export default class BasicExample extends React.Component {
  render() {
    return <GyroscopeAnimation><Image source={Logo} style={{width:200, height:200}} /></GyroscopeAnimation>;
  }
}

Changing animation parameters

import React from 'react';
import GyroscopeAnimation from 'react-native-gyroscope-animation';
import Logo from './assets/images/logo.png';

export default class BasicExample extends React.Component {
  render() {
    return <GyroscopeAnimation angle={45} distance={50} perspective={250} ><Image source={Logo} style={{width:200, height:200}} /></GyroscopeAnimation>;
  }
}

API

PropDescriptionDefault
styleStyle attributes for the view, as expected in a standard View.None
angleThe maximum angle of deviation of the object when animating the rotation.35
distanceThe Maximum movement of the object when animating the translate.40
perspectiveThe magnitude of the perspective when animating the object.250
1.1.0

3 years ago

1.0.15

3 years ago

1.0.14

3 years ago

1.0.13

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.12

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.2

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago