Skip to content

yodahuang/react_joystick

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React Joystick

NPM Build Status

This is a React components for rendering a joystick. It's a wrapper for nipple.js

Properties

  • options: Options for creating nipplejs joysticks
  • containerStyle: the style for the div component containing joystick
  • managerListener: the function callback that will have manager as a parameter so that you can control the behaviour of joystick

Example

import Joystick from react-joystick

const joyOptions = {
    mode: 'semi',
    catchDistance: 150,
    color: 'white'
}

const containerStyle = {
    position: 'relative',
    height: '350px',
    width: '100%',
    background: 'linear-gradient(to right, #E684AE, #79CBCA, #77A1D3)'
}


class JoyWrapper extends Component {
    constructor() {
        super();
        this.managerListener = this.managerListener.bind(this);
    }

    managerListener(manager) {
        manager.on('move', (e, stick) => {
            console.log('I moved!')
        })
        manager.on('end', () => {
            console.log('I ended!')
        })
    }

    render() {
        const { classes } = this.props;
        return (
            <div>
                <JoyStick options={joyOptions} containerStyle={containerStyle} managerListener={this.managerListener} />
            </div>
        )
    }
}

About

A React component for joystick using Nipple.js

Resources

Stars

Watchers

Forks

Packages

No packages published