//:仿饿了么github:https://github.com/stoneWeb/elm-react-native

欢迎各位同学加入:
React-Native群:397885169
大前端群:544587175
大神超多,热情无私帮助解决各种问题。

最近项目需求需要用到轮播图,所以写两Demo练练手,不过效果不太理想,希望大牛予以指正。

不多说,先上图。

这种轮播很常见,但是一个问题是,总感觉有点卡的感觉,最气人的是,你滑动到哪里,他就听到哪里,给用户感觉很不爽!

下面我分享一下该轮播的代码!

//import liraries
import React, { Component } from 'react';
import { View, Text, StyleSheet, TouchableOpacity, Dimensions, Image, ScrollView } from 'react-native';
import Swiper from 'react-native-swiper'; let { width, height } = Dimensions.get('window');
let Images = [
{ src: require('../assets/images/1.jpg') },
{ src: require('../assets/images/2.jpg') },
{ src: require('../assets/images/3.jpg') },
{ src: require('../assets/images/4.jpg') }
];
const loading = require('../assets/images/loading.gif'); // create a component
class TargetView extends Component {
static navigationOptions = {
title: '目标',
headerStyle: {
backgroundColor: '#FF3344',
},
} _renderSwiper() {
return (
<Swiper
style={styles.swiperStyle}
height={}
horizontal={true}
autolay={true}
loop={true}
paginationStyle={{ bottom: }}
showsPagination={true}
index={}
dotStyle={{ backgroundColor: 'rgba(0,0,0,.2)', width: , height: }}
activeDotStyle={{ backgroundColor: 'rgba(0,0,0,.5)', width: , height: }}>
<View style={styles.swiperItem}>
<Image style={styles.imageStyle} source={Images[].src}></Image>
</View>
<View style={styles.swiperItem}>
<Image style={styles.imageStyle} source={Images[].src}></Image>
</View>
<View style={styles.swiperItem}>
<Image style={styles.imageStyle} source={Images[].src}></Image>
</View>
<View style={styles.swiperItem}>
<Image style={styles.imageStyle} source={Images[].src}></Image>
</View>
</Swiper>
)
} render() {
return (
<ScrollView
style={styles.container}>
{this._renderSwiper()}
</ScrollView>
);
}
} // define your styles
const styles = StyleSheet.create({
container: {
flex:
},
swiperStyle: {
marginTop:,
width: width,
},
swiperItem: {
flex: ,
justifyContent: 'center',
backgroundColor: 'transparent',
},
imageStyle: {
flex: ,
width:width,
},
}); //make this component available to the app
export default TargetView;

第二个情况,先上一张图

都看到这是仿饿了么的轮播效果,但情况依然很不爽,大牛给出点优化建议啊!

下面我分享一下该轮播的效果,(如果你正在做轮播,做的比较好,谢谢分享我一下,本人虚心学习,微信:jkxx123321)

//import liraries
import React, { Component } from 'react';
import {
View,
Text,
StyleSheet,
Dimensions,
Image,
TouchableOpacity,
TouchableNativeFeedback,
TouchableWithoutFeedback,
ScrollView,
Platform,
Animated,
} from 'react-native';
import Swiper from 'react-native-swiper';
import px2pd from '../utils/px2dp'; let { width, height } = Dimensions.get('window');
const isIOS = Platform.OS == 'ios';
const headH = px2pd(isIOS ? : );
const inputHeight = px2pd(); const imgTypes = [
{ src: require('../assets/images/1.jpg') },
{ src: require('../assets/images/2.jpg') },
{ src: require('../assets/images/3.jpg') },
{ src: require('../assets/images/4.jpg') },
{ src: require('../assets/images/4.jpg') },
{ src: require('../assets/images/1.jpg') },
{ src: require('../assets/images/2.jpg') },
{ src: require('../assets/images/3.jpg') },
{ src: require('../assets/images/4.jpg') },
{ src: require('../assets/images/4.jpg') },
{ src: require('../assets/images/1.jpg') },
{ src: require('../assets/images/2.jpg') },
{ src: require('../assets/images/3.jpg') },
{ src: require('../assets/images/4.jpg') },
{ src: require('../assets/images/4.jpg') },
{ src: require('../assets/images/4.jpg') },
{ src: require('../assets/images/4.jpg') }
];
const loading = require('../assets/images/loading.gif'); // create a component
class TargetView extends Component {
static navigationOptions = {
title: '目标',
headerStyle: {
backgroundColor: '#FF3344',
},
}
constructor(props) {
super(props)
this.state = {
location: "联锦大厦",
}
} _renderHeader() {
return (
<View style={styles.header}>
{/*定位、天气*/}
<View style={styles.lbsWeather}>
<TouchableWithoutFeedback>
<View style={styles.lbs}>
<Image source={require('../assets/icons/search.png')} style={{ width: px2pd(), height: px2pd() }}></Image>
<Text style={{ fontSize: px2pd(), fontWeight: 'bold', color: '#fff', paddingHorizontal: px2pd() }}>{this.state.location}</Text>
<Image source={require('../assets/icons/search.png')} style={{ width: px2pd(), height: px2pd() }}></Image>
</View>
</TouchableWithoutFeedback>
<View style={styles.weather}>
<View style={{ marginRight: px2pd() }}>
<Text style={{ fontSize: px2pd(), color: '#fff', textAlign: 'center' }}>{'20℃'}</Text>
<Text style={{ fontSize: px2pd(), color: '#fff' }}>{'晴天'}</Text>
</View>
<Image source={require('../assets/icons/search.png')} style={{ width: px2pd(), height: px2pd() }}></Image>
</View>
</View>
{/*搜索框*/}
<View style={{
marginTop: px2pd(),
}}>
<TouchableWithoutFeedback onPress={() => { }}>
<View style={styles.searchBtn}>
<Image source={require('../assets/icons/search.png')} style={{ width: px2pd(), height: px2pd() }}></Image>
<Text style={{ fontSize: px2pd(), color: '#666', marginLeft: px2pd() }}>{'输入商家,商品名称'}</Text>
</View>
</TouchableWithoutFeedback>
</View>
<Animated.View style={styles.keywords}>
{
['肯德基', '烤肉', '吉野家', '粥', '必胜客', '一品生煎', '星巴克'].map((item, i) => {
return (
<TouchableWithoutFeedback key={i}>
<View style={{ marginRight: px2pd() }}>
<Text style={{ fontSize: px2pd(), color: '#fff' }}>{item}</Text>
</View>
</TouchableWithoutFeedback>
)
})
}
</Animated.View>
</View>
)
} _renderTypes() {
const w = width / , h = w * . + ;
let renderSwipeView = (types, n) => {
return (
<View style={styles.typesView}>
{
types.map((item, i) => {
let render = (
<View style={[{ width: w, height: h }, styles.typesItem]}>
<Image source={imgTypes[n + i].src} style={{ width: w * ., height: w * . }} />
<Text style={{ fontSize: px2pd(), color: "#666" }}>{item}</Text>
</View>
)
return (
isIOS ? (
<TouchableHighlight style={{ width: w, height: h }} key={i} onPress={() => { }}>{render}</TouchableHighlight>
) : (
<TouchableNativeFeedback style={{ width: w, height: h }} key={i} onPress={() => { }}>{render}</TouchableNativeFeedback>
)
)
})
}
</View>
)
}
return (
<Swiper
height={h * 2.4}
paginationStyle={{ bottom: }}
dotStyle={{ backgroundColor: 'rgba(0,0,0,.2)', width: , height: }}
activeDotStyle={{ backgroundColor: 'rgba(0,0,0,.5)', width: , height: }}>
{renderSwipeView(['美食', '甜品饮品', '商店超市', '预定早餐', '果蔬生鲜', '新店特惠', '准时达', '高铁订餐'], )}
{renderSwipeView(['土豪推荐', '鲜花蛋糕', '汉堡炸鸡', '日韩料理', '麻辣烫', '披萨意面', '川湘菜', '包子粥店'], )}
</Swiper>
)
} render() {
return (
<View style={styles.container}>
<ScrollView style={styles.scrollView}>
{this._renderHeader()}
<View style={{ backgroundColor: "#fff", paddingBottom: px2pd() }}>
{this._renderTypes()}
</View>
</ScrollView>
</View>
);
}
} // define your styles
const styles = StyleSheet.create({
container: {
flex: ,
backgroundColor: '#f3f3f3',
},
scrollView: {
marginBottom: px2pd(),
},
header: {
backgroundColor: '#0398ff',
height: headH,
paddingTop: px2pd(isIOS ? : ),
paddingHorizontal: ,
},
lbsWeather: {
height: inputHeight,
overflow: "hidden",
flexDirection: 'row',
justifyContent: 'space-between',
},
lbs: {
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
},
weather: {
flexDirection: 'row',
alignItems: 'center',
},
searchBtn: {
borderRadius: inputHeight,
height: inputHeight,
flexDirection: 'row',
backgroundColor: '#fff',
justifyContent: 'center',
alignItems: 'center',
},
keywords: {
marginTop: px2pd(),
flexDirection: 'row',
justifyContent: 'space-between',
},
typesView: {
paddingBottom: px2pd(),
flex: ,
backgroundColor: "#fff",
flexDirection: "row",
flexWrap: "wrap"
},
typesItem: {
backgroundColor: '#fff',
justifyContent: 'center',
alignItems: 'center'
},
}); //make this component available to the app
export default TargetView;
//---------------------px2dp.js------------------------------// import { Dimensions } from 'react-native' const deviceH = Dimensions.get('window').height
const deviceW = Dimensions.get('window').width const basePx = export default function px2dp(px) {
return px * deviceW / basePx
}

附一张属性表:

3.1 基本属性

Prop Default Type Description
horizontal true bool 如果值为true时,那么滚动的内容将是横向排列的,而不是垂直于列中的。
loop true bool 如果设置为false,那么滑动到最后一张时,再次滑动将不会展示第一张图片。
index 0 number 初始进入的页面标识为0的页面。
showsButtons false bool 如果设置为true,那么就可以使控制按钮(即:左右两侧的箭头)可见。
autoplay false bool 设置为true,则页面可以自动跳转。

3.2 自定义属性

Prop Default Type Description
width - number 如果你没有特殊的设置,就通过flex:1默认为全屏。
height - number 如果你没有特殊的设置,就通过flex:1默认为全屏
style {...} style 设置页面的样式。

3.3 pagination 分页

Prop Default Type Description
showsPagination true bool 默认值为true,在页面下边显示圆点,以标明当前页面位于第几个。
paginationStyle {...} style 设置页面原点的样式,自定义的样式会和默认样式进行合并。
renderPagination      
dot <View style={{backgroundColor:'rgba(0,0,0,.2)', width: 8, height:
8,borderRadius: 4, marginLeft: 3, marginRight: 3, marginTop: 3,
marginBottom: 3,}} />
element 可以自定义不是当前圆点的样式
activeDot <View style={{backgroundColor: '#007aff', width: 8, height: 8,
borderRadius: 4, marginLeft: 3, marginRight: 3, marginTop: 3,
marginBottom: 3,}} />
element 可以自定义当前页面圆点的样式

3.4 自动播放

Prop Default Type Description
autoplay true bool 设置为true可以使页面自动滑动。
autoplayTimeout 2.5 number 设置每个页面自动滑动停留的时间
autoplayDirection true bool 圆点的方向允许默认自己控制

3.5 控制按钮

Prop   Default Type Description
showsButtons   true bool 是否显示控制箭头按钮
buttonWrapperStyle  
{position: 'absolute', paddingHorizontal: 15,
paddingVertical: 30, top: 70, left: 0, alignItems:'flex-start'}
style 定义默认箭头按钮的样式
nextButton  
<Text style={{fontSize:60, color:'#00a7ec',
 paddingTop:30, paddingBottom:30}}>‹</Text>
element 自定义右箭头按钮样式
prevButton  
<Text style={{fontSize:60, color:'#00a7ec',
paddingTop:30, paddingBottom:30}}>›</Text>
element 自定义左箭头按钮样式

加油!

React Native 如何做轮播图 react-native-swiper的更多相关文章

  1. React视角下的轮播图

    天猫购物网站最显眼的就是轮播图了.我在学习一样新js库,一个新框架或新的编程思想的时候,总是感叹"入门必做选项卡,进阶须撸轮播图."作为一个React组件,它是状态操控行为的典型, ...

  2. reactjs-swiper react轮播图组件基于swiper

    react轮播图组件基于swiper demo地址:http://reactjs-ui.github.io/reactjs-swiper/simple.html 1. 下载安装 npm install ...

  3. 用js和jQuery做轮播图

    Javascript或jQuery做轮播图 css样式 <style> a{ text-decoration:none; } .naver{ width: 100%; position:r ...

  4. 用 CSS 做轮播图

    对于用 css 实现一个轮播图的缘由,是那时候刚开始接触前端,完全还不懂 js.但是有一个项目(就是一个用来应付面试的作品)需要做一个轮播的效果,当时第一反应就是用 css3 自定义动画 -webki ...

  5. 用avalon框架怎么做轮播图?

    avalon这个框架其实特别的小众,做个轮播图呢?在github上的例子只有一个,而且功能特别的少,有的引入的插件与avalon里面的指令又不兼容,所以找了一个owl-carousel,目前实现了移动 ...

  6. jQuery做轮播图

    这是我自己做的一个简单的轮播图,效果图如下: 我觉得轮播图中最主要的是要理解到图片为什么会滑动,是怎么控制的.上面这个我自己做的,是搭好的一个结构,在无序列表中插入需要的图片.然后在插入图片的后面添加 ...

  7. tab切换里面做轮播图

    这里的轮播图有三页,并且每页的数据有8个,只能将23个数据分割开来,这里要实现5个tab用一个轮播图 <div class="report_detail_class"> ...

  8. H5制作显示轮播图的方法Swiper

    1.需要引入Swiper插件 <!-- swiper插件 --> <link rel="stylesheet" href="https://unpkg. ...

  9. React 轮播图实现

    接到项目, 用react和material-ui实现轮播图. 搜索了一些方法参考, 不论语言/框架的使用,大体上分为两种思路 超宽列表实现法 在原生JS或者JQuery中,轮播图的实现一般是这样子的 ...

随机推荐

  1. shell信号捕捉命令 trap

    trap 命令 tarp命令用于在接收到指定信号后要执行的动作,通常用途是在shell脚本被中断时完成清理工作.例如: 脚本在执行时按下CTRL+c时,将显示"program exit... ...

  2. ERROR tool.ImportTool: Encountered IOException running import job: java.io.IOException: Cannot run program "hive": error=2, No such file or directory

    原因是hive没有设置环境变量 1,vim /etc/profile  (切换root用户) 2.source /etc/profile

  3. 【从0到1学Web前端】CSS定位问题二(float和display的使用) 分类: HTML+CSS 2015-05-28 22:03 812人阅读 评论(1) 收藏

    display 属性规定元素应该生成的框的类型. 这个属性用于定义建立布局时元素生成的显示框类型.对于 HTML 等文档类型,如果使用 display 不谨慎会很危险,因为可能违反 HTML 中已经定 ...

  4. IdentityServer-Setup and Overview

    设置和概述 有两种方式创建一个IdentityServer 项目: 从零开始 使用Visual Studio的ASP.NET Identity模板 如果是从零开始,我们提供一序列的帮助及内存存储,所以 ...

  5. GO入门——5. 函数

    1 函数 Go 函数 不支持 嵌套.重载和默认参数 定义函数使用关键字 func,且左大括号不能另起一行 函数也可以作为一种类型使用 无需声明原型 不定长度变参 func A(a string,c . ...

  6. j2ee高级开发技术课程第四周

    分析hello.java,在hello1项目中.下载链接:https://github.com/javaee/tutorial-examples/tree/master/web/jsf/hello1 ...

  7. Linux交换空间和内存不足

    交换空间 交换技术就是将一页内存复制到预先设定的硬盘上的交换空间,来释放该页占用内存.物理内存和交换空间的和就是可提供的虚拟内存的总量.Linux有两种形式的交换方式,分别是交换分区,交换文件. 优点 ...

  8. Tomcat学习总结(10)——Tomcat多实例冗余部署

    昨天在跟群友做技术交流的时候,了解到,有很多大公司都是采用了高可用的,分布式的,实例沉余1+台.但是在小公司的同学也很多,他们反映并不是所有公司都有那样的资源来供你调度.往往公司只会给你一台机器,因为 ...

  9. Linux 技巧:让进程在后台可靠运行的几种方法(转)

    我们经常会碰到这样的问题,用 telnet/ssh 登录了远程的 Linux 服务器,运行了一些耗时较长的任务, 结果却由于网络的不稳定导致任务中途失败.如何让命令提交后不受本地关闭终端窗口/网络断开 ...

  10. VMware12 克隆虚拟机并且重新分配ip、mac

    记录如何快速拷贝一台虚拟机,并且重新分配IP.mac等方便自己做实验: 环境:VMWare12  .Redhat6.8 Step1.克隆虚拟机 虚拟机处于未打开状态,右击管理—>克隆 弹出克隆界 ...