React Native 之ScrollView轮播图实现

前端之家收集整理的这篇文章主要介绍了React Native 之ScrollView轮播图实现前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1.首先如果文件index.android.js 或者 index.ios.js 我这里用的是前者


  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. * @flow
  5. */
  6.  
  7. import React,{ Component } from 'react';
  8. import {
  9. AppRegistry,StyleSheet,TextInput,TouchableOpacity,ScrollView,Text,View
  10. } from 'react-native';
  11.  
  12. import ScrollViewDemo from "./scrollViewDemo";
  13. import ScrollViewTop from "./scrollViewTop";
  14. import PositionDemo from "./positionDemo";
  15.  
  16. export default class CQQLoginDemo extends Component {
  17. render() {
  18. return (
  19. <ScrollViewTop/>
  20. );
  21. }
  22.  
  23. }
  24. AppRegistry.registerComponent('CQQLoginDemo',() => CQQLoginDemo);
2.在项目的 index.android.js同一目录下 创建json文件 这样方便图片的访问,资源图片放在项目名称\android\app\src\main\res\drawable 下面

这里的BadgeData.json 如下:

  1. {
  2. "data":[
  3. {
  4. "icon" : "danjianbao","title" : "单肩包"
  5. },{
  6. "icon" : "liantiaobao","title" : "链条包"
  7. },{
  8. "icon" : "qianbao","title" : "钱包"
  9. },{
  10. "icon" : "shoutibao","title" : "手提包"
  11. },{
  12. "icon" : "shuangjianbao","title" : "双肩包"
  13. },{
  14. "icon" : "xiekuabao","title" : "斜挎包"
  15. }
  16. ]
  17. }
3.主要的文件 scrollViewTop.js 文件 如下 具体注释中已写 直接上代码
  1. /**
  2. * Sample React Native App
  3. * https://github.com/facebook/react-native
  4. * @flow
  5. */
  6.  
  7. import React,Image,View
  8. } from 'react-native';
  9.  
  10. let Dimensions = require('Dimensions');
  11. let ScreenWidth = Dimensions.get('window').width;
  12. let ScreenHeight = Dimensions.get('window').height;
  13.  
  14. import ImageData from "./BadgeData.json";
  15.  
  16. export default class scrollViewTop extends Component {
  17. constructor(props) {
  18. super(props);
  19. this.state = { currentPage: 0 };
  20. }
  21.  
  22. static defaultProps = {
  23. duration: 1000,}
  24.  
  25. componentDidMount() {
  26. this._startTimer();
  27.  
  28. }
  29.  
  30. componentWillUnmount() {
  31. // 如果存在this.timer,则使用clearTimeout清空。
  32. // 如果你使用多个timer,那么用多个变量,或者用个数组来保存引用,然后逐个clear
  33. this.timer && clearTimeout(this.timer);
  34. }
  35.  
  36. render() {
  37. return (
  38. <View style={styles.continer}>
  39. <ScrollView
  40. ref='scrollView'
  41. //水平方向
  42. horizontal={true}
  43. //当值为true时显示滚动条
  44. showsHorizontalScrollIndicator={false}
  45. //当值为true时,滚动条会停在滚动视图的尺寸的整数倍位置。这个可以用在水平分页
  46. pagingEnabled={true}
  47. //滑动完一贞
  48. onMomentumScrollEnd={(e)=>{this._onAnimationEnd(e)}}
  49. //开始拖拽
  50. onScrollBeginDrag={()=>{this._onScrollBeginDrag()}}
  51. //结束拖拽
  52. onScrollEndDrag={()=>{this._onScrollEndDrag()}}
  53. >
  54. {this._renderAllImage()}
  55. </ScrollView>
  56. <View style={styles.pageViewStyle}>
  57. {this._renderAllIndicator()}
  58. </View>
  59. </View>
  60. );
  61. }
  62. /**开始拖拽 */
  63. _onScrollBeginDrag(){
  64. console.log("开始拖拽");
  65. //两种清除方式 都是可以的没有区别
  66. // this.timer && clearInterval(this.timer);
  67. this.timer && clearTimeout(this.timer);
  68. }
  69. /**停止拖拽 */
  70. _onScrollEndDrag(){
  71. console.log("停止拖拽");
  72. this.timer &&this._startTimer();
  73. }
  74.  
  75. /**1.轮播图片展示 */
  76. _renderAllImage() {
  77. let allImage = [];
  78. let imgsArr = ImageData.data;
  79. for (let i = 0; i < imgsArr.length; i++) {
  80. let imgsItem = imgsArr[i];
  81. allImage.push(
  82. <Image key={i} source={{uri:imgsItem.icon}} style={styles.imageStyle} />
  83. );
  84. }
  85. return allImage;
  86. }
  87. /**2.手动滑动分页实现 */
  88. _onAnimationEnd(e) {
  89. //求出偏移量
  90. let offsetX = e.nativeEvent.contentOffset.x;
  91. //求出当前页数
  92. let pageIndex = Math.floor(offsetX / ScreenWidth);
  93. //更改状态机
  94. this.setState({ currentPage: pageIndex });
  95. }
  96.  
  97. /**3.页面指针实现 */
  98. _renderAllIndicator() {
  99. let indicatorArr = [];
  100. let style;
  101. let imgsArr = ImageData.data;
  102. for (let i = 0; i < imgsArr.length; i++) {
  103. //判断
  104. style = (i==this.state.currentPage)?{color:'orange'}:{color:'white'};
  105. indicatorArr.push(
  106. <Text key={i} style={[{fontSize:30},style]}>
  107. </Text>
  108. );
  109. }
  110. return indicatorArr;
  111. }
  112.  
  113. /**4.通过定时器实现自动播放轮播图 */
  114. _startTimer(){
  115. let scrollView = this.refs.scrollView;
  116. this.timer = setInterval(
  117. ()=>{console.log('开启定时器');
  118. let imageCount = ImageData.data.length;
  119. //4.1 设置圆点
  120. let activePage = 0;
  121. //4.2判断
  122. if(this.state.currentPage>=imageCount+1){
  123. activePage = 0;
  124. }else{
  125. activePage = this.state.currentPage+1;
  126. }
  127. //4.3 更新状态机
  128. this.setState({currentPage:activePage});
  129. //4.4 让scrollview 滚动起来
  130. let offsetX = activePage * ScreenWidth;
  131. scrollView.scrollResponderScrollTo({x:offsetX,y:0,animated:true});
  132. },this.props.duration
  133. );
  134. }
  135. }
  136.  
  137. const styles = StyleSheet.create({
  138. continer:{
  139. backgroundColor: '#dddddd'
  140. },imageStyle:{
  141. height:400,width:ScreenWidth
  142. },pageViewStyle:{
  143. height:25,width:ScreenWidth,backgroundColor:'rgba(0,0.4)',position:'absolute',bottom:0,flexDirection:'row',alignItems:'center',}
  144. });
  145.  


链接:http://pan.baidu.com/s/1kVcAVTP 密码:e9kf

猜你在找的React相关文章