react-slide-pane
v1.0.3
Published
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/) [![Codepen Preview](https://img.shields.io/badge/codepen-preview-brightgreen.svg)](https://codepen.io/turkyden/pen/ExKOmqV) [
Downloads
1
Maintainers
Readme
React Slide Pane
Split-Pane React component, can be nested or split vertically or horizontally and diff image!
Usage
import React from 'react'
import ReactDOM from 'react-dom'
import SlidePane from 'react-slide-pane'
ReactDOM.render(
<>
<SlidePane width={600} height={400} split="vertical" initial="200px">
<img src="https://jdc.jd.com/img/600x400?text=1" />
<img src="https://jdc.jd.com/img/600x400?text=2" />
</SlidePane>
</>,
mountNode
)
API
| Name | Type | Default | Description |
| :------: | :-----------: | :--------: | :------------------------------------------------------------: |
| width | number | 600
| The width of pane conmponent |
| height | number | 400
| The height of pane conmponent |
| initial | number / string | 200
| The initial position of resizer |
| split | string | vertical
| If split is equal to horizontally
, the resizer will be horizontally. |
| children | React.Element | undefied
| The children of slide pane coms |