New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-rotatable

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-rotatable

React component to add rotate possibility

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

react-rotatable demo

Rotatable component implemented with react. Works even element has translate transformation :)

Implementation guide

Installation

yarn add react-rotatable

Add styles

import 'react-rotatable/dist/css/rotatable.min.css'

Example

import Rotatable from 'react-rotatable';
import 'react-rotatable/dist/css/rotatable.min.css';

class App extends Component {
  render() {
    const style = {
      width: '100px',
      height: '100px',
      border: '1px solid black',
      position: 'absolute',
      top: '100px',
      left: '100px',
    };

    return (
      <Rotatable>
        <div style={style}>
          Rotate me
        </div>
      </Rotatable>
    );
  }
}

export default App;

Props

onRotateStart

callback function called on start rotating. Gets arguments: event, dom element, current angle.

onRotate

callback function called on rotating. Gets arguments: event, dom element, current angle.

onStop

callback function called on stop rotating. Gets arguments: event, dom element, current angle.

canRotate

bool, default true, when false rotation is disabled.

Development

git clone https://github.com/pjarmalavicius/react-rotatable.git
cd react-rotatable
yarn 
yarn run start

License

MIT

Keywords

react-rotatable

FAQs

Package last updated on 25 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts