# Swipe 滑块

# 安装

npm install @plutojs/swipe

# 引用

import Swipe from '@plutojs/swipe';
import '@plutojs/swipe/build/index.css';

# 使用

const [show, setShow] = useState(false);
<Swipe show={show} setShow={setShow}>
	<div className="swipe-demo-field" />
	{show && <div className="swipe-extend-demo-field" />}
</Swipe>

# Props配置

参数 说明 类型 可选值 默认值 必填
show 是否展开状态 Boolean - -
setShow 设置展开状态 (bol: boolean) => void - -
className 定制class名称 String - -
disabled 是否关闭拖拽 Boolean - false
zIndex 浮层层级 Number - 999
openDistance 展开滑动距离阀值 Number - 150
closeDistance 关闭滑动距离阀值 Number - 20