react-native-swiper組件-輪播

無意間發(fā)現(xiàn)React的版本又更新到了0.51了揩悄。這又意味著某些群體面臨的踩坑時節(jié)的到來慷嗜。(啊哈哈哈G铉汀为迈!想想就覺得特別開心)
如此便來搶先看看RN公主這次又描的是哪處眉三椿。

用手動去計算偏移量并且下載定時器的方法去封裝輪播圖功能顯得太過繁瑣。正所謂他山之石可以攻玉葫辐。顯然搜锰,引用已經(jīng)封裝好的三方開源組件能讓我們在編寫代碼時事半功倍。而react-native-swiper正是一個能用于做輪播效果的三方組件耿战。

1蛋叼、github上的實例:

https://github.com/leecade/react-native-swiper

2、基本命令

  • 安裝:npm i react-native-swiper --save

  • 查看:npm view react-native-swiper

  • 刪除:npm rm react-native-swiper --save

3剂陡、屬性

所有ScrollView組件擁有的屬性react-native-swiper都擁有狈涮。

  • Basic
屬性 默認(rèn)值 類型 描述
horizontal true bool 設(shè)置輪播方向
loop true bool 是否循環(huán)播放
index 0 number 初始進入頁面標(biāo)識為0的頁面
showsButtons false bool 是否顯示控制按鈕(即左右兩側(cè)的箭頭是否可見)
autoPlay false bool 是否自動輪播
onIndexChanged (index)=>null func 當(dāng)用戶拖拽時更新索引調(diào)用
  • Custom basic style & content
屬性 默認(rèn)值 類型 描述
width - number 寬度,默認(rèn)flex:1全屏
height - number 高度鸭栖,默認(rèn)flex:1全屏
index 0 number 初始進入頁面標(biāo)識為0的頁面
style {...} style 只加載當(dāng)前索引
loadMinimal false bool 只加載當(dāng)前索引
loadMinimalSize 1 bumber 查看當(dāng)前索引
loadMinimalLoader <ActivityIndicator/> element 自定義預(yù)加載樣式
  • Pagination
屬性 默認(rèn)值 類型 描述
showsPagination true bool 在頁面下邊顯示圓點歌馍,以表明當(dāng)前頁面位于第幾個
renderPagination - func 通過三個參數(shù)(index,total,context)去渲染如何分頁
dot <View style={{backgroundColor: '#e6e6e6',width: 5,height: 5,borderRadius: 4,marginLeft: 3, marginRight: 3, marginTop: 3,marginBottom: 3}} /> element 允許自定義元素樣式
activeDot <View style={{backgroundColor: '#e6e6e6',width: 5,height: 5,borderRadius: 4,marginLeft: 3, marginRight: 3, marginTop: 3,marginBottom: 3}} /> element 允許自定義當(dāng)前選擇點元素樣式
dotStyle - object 允許自定義當(dāng)前選擇點元素樣式
  • AutoPlay
屬性 默認(rèn)值 類型 描述
autoplay true bool 設(shè)置輪播圖為自動播放模式
autoplayTimeout 2.5 number 設(shè)置輪播間隔
autoplayDirection ture bool 控制輪播圖是否循環(huán)

使用方式

  • 引用外部組件
import Swiper from 'react-native-swiper';
  • 在render方法中返回swiper組件
    showsButtons代表向左向右滑的指示按鈕
<Swiper style={styles.wrapper} showsButtons={true}>
            <View style={styles.slide1}>
                <Text style={styles.text}>Hello Swiper</Text>
            </View>
            <View style={styles.slide2}>
                <Text style={styles.text}>Beautiful</Text>
            </View>
            <View style={styles.slide3}>
                <Text style={styles.text}>And simple</Text>
            </View>
        </Swiper>
  • 設(shè)置樣式
    設(shè)置每個view全屏顯示。view里面的內(nèi)容居中晕鹊。
wrapper: {
    },
    slide1: {
        flex: 1,
        justifyContent: 'center',
        alignItems: 'center',
        backgroundColor: '#9DD6EB'
    },
    slide2: {
        flex: 1,
        justifyContent: 'center',
        alignItems: 'center',
        backgroundColor: '#97CAE5'
    },
    slide3: {
        flex: 1,
        justifyContent: 'center',
        alignItems: 'center',
        backgroundColor: '#92BBD9'
    },
    text: {
        color: '#fff',
        fontSize: 30,
        fontWeight: 'bold'
    }
  • 導(dǎo)入外部組件松却、通過Dimension獲取屏幕寬度。{width}代表ES6語法的解構(gòu)賦值
import {
  Platform,
  StyleSheet,
  Text,
  View,
  Image,
  Dimensions
} from 'react-native';
import Swiper from 'react-native-swiper';
const {width} = Dimensions.get('window');  //解構(gòu)賦值 獲取屏幕寬度
  • 在render方法中返回一個頂級組件View捏题。里面裝載兩個swiper
    第一個輪播圖設(shè)置為豎向滾動玻褪,第二個輪播圖設(shè)置為橫向滾動肉渴。同時設(shè)置他們自動播放公荧。
export default class App extends Component<{}> {
  render() {
    return (
        <View style={styles.container}>
            {/*設(shè)置horizontal為豎向排列 autoplay為自動播放*/}
             <Swiper style={styles.wrapper} height={200} horizontal={false} autoplay autoplayTimeout={1}  >
                <View style={styles.slide1}>
                    <Text style={styles.text}>Hello Swiper</Text>
                </View>
                <View style={styles.slide2}>
                    <Text style={styles.text}>Beautiful</Text>
                </View>
                <View style={styles.slide3}>
                    <Text style={styles.text}>And simple</Text>
                </View>
            </Swiper>

            <Swiper style={styles.wrapper} height={240} autoplay
                    onMomentumScrollEnd={(e, state, context) => console.log('index:', state.index)}
                    dot={<View style={{backgroundColor:'rgba(0,0,0,.5)', width: 8, height: 8,borderRadius: 4, marginLeft: 3, marginRight: 3, marginTop: 3, marginBottom: 3,}} />}
                    activeDot={<View style={{backgroundColor: 'yellow', width: 8, height: 8, borderRadius: 4, marginLeft: 3, marginRight: 3, marginTop: 3, marginBottom: 3}} />}
                    paginationStyle={{
                        bottom: 23, left: null, right: 10
                    }}

                    loop>
                <View style={styles.slide} >
                    <Text numberOfLines={1}>Aussie tourist dies at Bali hotel</Text>
                    <Image resizeMode='stretch' style={styles.image} source={require('./img/1.jpg')} />
                </View>
                <View style={styles.slide}>
                    <Text numberOfLines={1}>Big lie behind Nine’s new show</Text>
                    <Image resizeMode='stretch' style={styles.image} source={require('./img/2.jpg')} />
                </View>
                <View style={styles.slide} >
                    <Text numberOfLines={1}>Why Stone split from Garfield</Text>
                    <Image resizeMode='stretch' style={styles.image} source={require('./img/3.jpg')} />
                </View>
                <View style={styles.slide}>
                    <Text numberOfLines={1}>Learn from Kim K to land that job</Text>
                    <Image resizeMode='stretch' style={styles.image} source={require('./img/4.jpg')} />
                </View>
            </Swiper>
        </View>
            </Swiper>
        </View>

    );
  }
}
  • 設(shè)置樣式
const styles = StyleSheet.create({
    container: {
        flex: 1
    },

    wrapper: {
    },

    slide: {
        flex: 1,
        justifyContent: 'center',
        backgroundColor: 'transparent'
    },

    slide1: {
        flex: 1,
        justifyContent: 'center',
        alignItems: 'center',
        backgroundColor: '#9DD6EB'
    },

    text: {
        color: '#fff',
        fontSize: 30,
        fontWeight: 'bold'
    },

    image: {
        width:width,
        flex: 1
    }
});
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市同规,隨后出現(xiàn)的幾起案子循狰,更是在濱河造成了極大的恐慌窟社,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,839評論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件绪钥,死亡現(xiàn)場離奇詭異灿里,居然都是意外死亡,警方通過查閱死者的電腦和手機程腹,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,543評論 2 382
  • 文/潘曉璐 我一進店門匣吊,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人寸潦,你說我怎么就攤上這事色鸳。” “怎么了见转?”我有些...
    開封第一講書人閱讀 153,116評論 0 344
  • 文/不壞的土叔 我叫張陵命雀,是天一觀的道長。 經(jīng)常有香客問我斩箫,道長吏砂,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,371評論 1 279
  • 正文 為了忘掉前任乘客,我火速辦了婚禮狐血,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘寨典。我一直安慰自己氛雪,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,384評論 5 374
  • 文/花漫 我一把揭開白布耸成。 她就那樣靜靜地躺著报亩,像睡著了一般。 火紅的嫁衣襯著肌膚如雪井氢。 梳的紋絲不亂的頭發(fā)上弦追,一...
    開封第一講書人閱讀 49,111評論 1 285
  • 那天,我揣著相機與錄音花竞,去河邊找鬼劲件。 笑死,一個胖子當(dāng)著我的面吹牛约急,可吹牛的內(nèi)容都是我干的零远。 我是一名探鬼主播,決...
    沈念sama閱讀 38,416評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼厌蔽,長吁一口氣:“原來是場噩夢啊……” “哼牵辣!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起奴饮,我...
    開封第一講書人閱讀 37,053評論 0 259
  • 序言:老撾萬榮一對情侶失蹤纬向,失蹤者是張志新(化名)和其女友劉穎择浊,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體逾条,經(jīng)...
    沈念sama閱讀 43,558評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡琢岩,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,007評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了师脂。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片担孔。...
    茶點故事閱讀 38,117評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖吃警,靈堂內(nèi)的尸體忽然破棺而出攒磨,到底是詐尸還是另有隱情,我是刑警寧澤汤徽,帶...
    沈念sama閱讀 33,756評論 4 324
  • 正文 年R本政府宣布娩缰,位于F島的核電站,受9級特大地震影響谒府,放射性物質(zhì)發(fā)生泄漏拼坎。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,324評論 3 307
  • 文/蒙蒙 一完疫、第九天 我趴在偏房一處隱蔽的房頂上張望泰鸡。 院中可真熱鬧,春花似錦壳鹤、人聲如沸盛龄。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,315評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽余舶。三九已至,卻和暖如春锹淌,著一層夾襖步出監(jiān)牢的瞬間匿值,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,539評論 1 262
  • 我被黑心中介騙來泰國打工赂摆, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留挟憔,地道東北人。 一個月前我還...
    沈念sama閱讀 45,578評論 2 355
  • 正文 我出身青樓烟号,卻偏偏與公主長得像绊谭,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子汪拥,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,877評論 2 345