0.0.9 • Published 6 years ago

react-jump v0.0.9

Weekly downloads
14
License
ISC
Repository
github
Last release
6 years ago

react-jump

Jump component is based on jump.js for React

Installation

npm install react-jump

Usage

import { BackToTop, Jump } from 'react-jump';

const App => () =>
  <div>
      // 跳回顶部
      <BackToTop
      options={{offset: 50}}
      className='cars'
      showHeight={400}
      >
        <button>UP</button>
      </BackToTop>
      // 跳到你想去的地方
      <Jump target={'.cars'}><span style={{color: 'red'}}>i want to go cars</span></Jump>
  </div>

export default App