这次在项目中需要用到焦点图滑动效果和在页面一个浮层中增加一个滑动的动画效果,之前已经写过很多次滑动效果的页面了,但是都没有留下记录。
现在记载下这次在项目中使用react-swipe和react-motion的收获。
react-swipe
安装需要同时安装swipe-js-jso包:
1 | npm install react swipe-js-iso react-swipe |
常用属性介绍:
continuous: 循环到最后一个时继续滑动是否从头开始,默认为true
transitionEnd:滑动动画结束时调用,callback(index, item), index为当前滑动的下标,item为当前被滑动的元素
因为swipe没有提供轮滑图中显示的提示圆点之类,自己可以根据下标在上面加上提示用户的圆点等。
示例代码:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23// import ReactSwipe from 'react-swipe';
<div className="welfare-focus-wrap">
<ReactSwipe className="carousel" swipeOptions={{continuous: true, transitionEnd: (index) => {
this.setState({
focusIndex: index,
});
}}}>
{
this.state.activityDetails.map((item, index) =>
<div className={`welfareFocusWrap focusIndex${index}`} key={`welfareFocus${index}`} onClick={() => { location.href = item.activityUrl;}}>
<img src={item.pictureUrl} className="welfareFocusImg" />
</div>)
}
</ReactSwipe>
<div className="welfare-focus-circle-wrap">
{
this.state.activityDetails.map((item, index) =>
<div
className={`welfareFocusCircle ${this.state.focusIndex == index ? 'checked' : ''}`}
key={`welfareFocusCircle${index}`} />)
}
</div>
</div>
github地址:react-swipe 、swipe-js-iso
react-motion
在没实际写代码测试时候,对motion的概念感觉似懂非懂,翻了很多介绍react-motion的资料,在写了代码测试之后,理解react-motion是做了对
动画过程中从A点到B点平滑的变化数值,在数值变化过程中,react-motion会不断的调用回调方法,把变动的数值传入到需要渲染的dom中,
这个比自己实现的定时滑动会更加的平滑自然。
因为要兼容手机不同分辨率滑动的单位距离不一致,所以在Motion的外层div的onLoad事件中,每次通过元素的clientWidth来获得滑动的距离,在react中不得已使用了
dom,谁有更好的办法欢迎告诉我。
1 | const stepbarLeft = this.state.stepbarLeft; |
github地址:react-motion
Motion参考资料:React Motion 缓动函数剖析