react-native-snap-carousel 轮播

react-native-snap-carousel 轮播

1. 安装以及使用

yarn add react-native-snap-carousel -S
或
npm install react-native-snap-carousel -S

使用
import Carousel from 'react-native-snap-carousel';

2. <ParallaxImage /> component

2.1 示例(右边为我们做出的真实效果)

图2-1

图2-2

2.2 示例代码

import * as React from 'react';
import {
    Text,
    View,
    SafeAreaView,
    Dimensions,
    StyleSheet,
} from 'react-native';

import Carousel, {ParallaxImage} from 'react-native-snap-carousel';

const { width} = Dimensions.get('window')
class Carousel extends React.Component {
    constructor(props) {
        super(props);
        this.state = {
            // 这个就是传入的数据,如果是请求后台的数据的话,只要和下面这个对象数组格式保持一致就好
            entries: [
                {
                    title: 'Beautiful and dramatic Antelope Canyon',
                    subtitle: 'Lorem ipsum dolor sit amet et nuncat mergitur',
                    illustration: 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1596609990165&di=d35d99a47ba08dc9e3220d8515936230&imgtype=0&src=http%3A%2F%2Fwww.wodejia0.com%2Fimages%2Fobuwgnbonzuxa2ldfzrw63i%2F20090810%2F3114308_003924034_2.jpg',
                },
                {
                    title: 'Earlier this morning, NYC',
                    subtitle: 'Lorem ipsum dolor sit amet',
                    illustration: 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1596609997081&di=5492fbd5f7dfb9dc72761e07e95809c2&imgtype=0&src=http%3A%2F%2Fattachments.gfan.com%2Fforum%2F201411%2F20%2F145145w5u4504gu4th7g0z.jpg',
                },
                {
                    title: 'White Pocket Sunset',
                    subtitle: 'Lorem ipsum dolor sit amet et nuncat ',
                    illustration: 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1596609993973&di=258911ca593f9659a47e5f4fe601f466&imgtype=0&src=http%3A%2F%2Fimg.ewebweb.com%2Fuploads%2F20191006%2F19%2F1570360737-HvGOTkxnum.jpg',
                },
            ],
        }
    }

    _renderItem ({item, index}, parallaxProps) {
        return (
            <View style={styles.item}>
                <ParallaxImage
                    source={{ uri: item.illustration }}
                    containerStyle={styles.imageContainer}
                    style={styles.image}
                    parallaxFactor={0.4}
                    {...parallaxProps}
                />
                <Text style={styles.title} numberOfLines={2}>
                    {item.title}
                </Text>
            </View>
        );
    }

    render () {
        return (
            <View style={styles.carousel_container}>
                <Carousel
                    sliderWidth={width}
                    sliderHeight={width}
                    itemWidth={width - 60}
                    data={this.state.entries}
                    renderItem={this._renderItem}
                    hasParallaxImages={true}
                />
            </View>
        );
    }
}

const styles = StyleSheet.create({
    carousel_container: {
        marginTop: 40,
    },
    item: {
        flexDirection: 'row',
        justifyContent: 'center',
        width: width - 60,
        height: width - 80,
    },
    title: {
        display: 'flex',
        position: 'absolute',
        bottom: 10,
        color: 'white',
        // backgroundColor: 'rgba(208, 208, 208, .6)',
        width: '100%',
        height: 45,
        lineHeight: 45,
        fontSize: 20,
        paddingLeft: 10,
        borderWidth: 5,
        borderTopWidth: 0,
        borderBottomWidth: 0,
        borderLeftWidth: 5,
        borderRightWidth: 0,
        borderLeftColor: '#3399FF'
    },
    imageContainer: {
        flex: 1,
        marginBottom: Platform.select({ ios: 0, android: 1 }),
        backgroundColor: 'white',
        borderRadius: 8,
    },
    image: {
        ...StyleSheet.absoluteFillObject,
        resizeMode: 'cover',
    },
})

export default Carousel;

3. <Pagination /> component

3.1 示例(下面为我们做出的真实效果)

图3-1

图3-2

3.2 示例代码

import * as React from 'react';
import {
    Text,
    View,
    SafeAreaView,
    Dimensions,
    StyleSheet,
} from 'react-native';

import Carousel, {Pagination} from 'react-native-snap-carousel';

const { width} = Dimensions.get('window')

class Carousel extends React.Component {
    constructor(props) {
        super(props);
        this.state = {
            activeSlide: 0,
            entries: [
                {
                    title: 'Beautiful and dramatic Antelope Canyon',
                    subtitle: 'Lorem ipsum dolor sit amet et nuncat mergitur',
                    illustration: 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1596609990165&di=d35d99a47ba08dc9e3220d8515936230&imgtype=0&src=http%3A%2F%2Fwww.wodejia0.com%2Fimages%2Fobuwgnbonzuxa2ldfzrw63i%2F20090810%2F3114308_003924034_2.jpg',
                },
                {
                    title: 'Earlier this morning, NYC',
                    subtitle: 'Lorem ipsum dolor sit amet',
                    illustration: 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1596609997081&di=5492fbd5f7dfb9dc72761e07e95809c2&imgtype=0&src=http%3A%2F%2Fattachments.gfan.com%2Fforum%2F201411%2F20%2F145145w5u4504gu4th7g0z.jpg',
                },
                {
                    title: 'White Pocket Sunset',
                    subtitle: 'Lorem ipsum dolor sit amet et nuncat ',
                    illustration: 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1596609993973&di=258911ca593f9659a47e5f4fe601f466&imgtype=0&src=http%3A%2F%2Fimg.ewebweb.com%2Fuploads%2F20191006%2F19%2F1570360737-HvGOTkxnum.jpg',
                },
                {
                    title: 'Acrocorinth, Greece',
                    subtitle: 'Lorem ipsum dolor sit amet et nuncat mergitur',
                    illustration: 'https://ss1.bdstatic.com/70cFuXSh_Q1YnxGkpoWK1HF6hhy/it/u=2759078875,3643456742&fm=26&gp=0.jpg',
                },
                {
                    title: 'The lone tree, majestic landscape of New Zealand',
                    subtitle: 'Lorem ipsum dolor sit amet',
                    illustration: 'https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1596620354134&di=b809b4f153feb0b52cc2be9cbc85475e&imgtype=0&src=http%3A%2F%2Fimg.pconline.com.cn%2Fimages%2Fupload%2Fupc%2Ftx%2Fwallpaper%2F1207%2F18%2Fc1%2F12378628_1342603613470.jpg',
                },
            ],
        }
    }

    _renderItem({item, index}, parallaxProps) {
        return (
            <View style={styles.item}>
                <ParallaxImage
                    source={{uri: item.illustration}}
                    containerStyle={styles.imageContainer}
                    style={styles.image}
                    parallaxFactor={0.4}
                    {...parallaxProps}
                />
                <Text style={styles.title} numberOfLines={2}>
                    {item.title}
                </Text>
            </View>
        );
    }
    get pagination() {
        const { entries, activeSlide } = this.state;
        return (
            <Pagination
                dotsLength={entries.length}
                activeDotIndex={activeSlide}
                containerStyle={{ backgroundColor: 'rgba(208, 208, 208, 0)' }}
                dotStyle={{
                    width: 10,
                    height: 10,
                    borderRadius: 5,
                    marginHorizontal: 8,
                    backgroundColor: 'rgba(0, 0, 0, 0.5)'
                }}
                inactiveDotStyle={{
                    // Define styles for inactive dots here
                }}
                inactiveDotOpacity={0.4}
                inactiveDotScale={0.6}
            />
        );
    }

    render () {
        return (
            <View style={styles.carousel_container}>
                <Carousel
                    sliderWidth={width}
                    sliderHeight={width}
                    itemWidth={width - 60}
                    data={this.state.entries}
                    renderItem={this._renderItem}
                    hasParallaxImages={true}
                    onSnapToItem={(index) => this.setState({ activeSlide: index }) }
                />
                { this.pagination }
            </View>
        );
    }
}

const styles = StyleSheet.create({
    carousel_container: {
        marginTop: 40,
        // backgroundColor: 'rgba(208, 208, 208, .6)',
    },
    item: {
        flexDirection: 'row',
        justifyContent: 'center',
        width: width - 60,
        height: width - 80,
    },
    title: {
        display: 'flex',
        position: 'absolute',
        bottom: 10,
        color: 'white',
        // backgroundColor: 'rgba(208, 208, 208, .6)',
        width: '100%',
        height: 45,
        lineHeight: 45,
        fontSize: 20,
        paddingLeft: 10,
        borderWidth: 5,
        borderTopWidth: 0,
        borderBottomWidth: 0,
        borderLeftWidth: 5,
        borderRightWidth: 0,
        borderLeftColor: '#3399FF'
    },
    imageContainer: {
        flex: 1,
        marginBottom: Platform.select({ ios: 0, android: 1 }),
        backgroundColor: 'white',
        borderRadius: 8,
    },
    image: {
        ...StyleSheet.absoluteFillObject,
        resizeMode: 'cover',
    },
})

export default Carousel;

4. 如果你想查看更多参数可以查看官网

https://www.npmjs.com/package/react-native-snap-carousel

5. 小参数大布局(只要在Carousel中加上参数就可发挥作用)

5.1 默认

参数
<Carousel layout={'default'} />
结果

5.2 Stack

参数
<Carousel layout={'stack'} layoutCardOffset={`18`} />
结果

5.3 Tinder

参数
<Carousel layout={'tinder'} layoutCardOffset={`9`} />
结果

5.4 叮!

You should NOT use stack or tinder layouts if you have a large data set to display. In order to avoid rendering issues, the carousel will use a ScrollView component rather than a FlatList one for those layouts (see prop useScrollView). The tradeof is that you won't benefit from any of FlatList's advanced optimizations. See this issue for workarounds; or you may want to implement your own custom interpolation.

大概意思就是如果数据过多的情况下不要用stack或者tinder布局,因为他们是基于scrollView的,所以如果数据很多的话会增大系统开销。
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351