react 中使用Swiper 6.3.3 自动滚屏,鼠标悬停

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react 中使用Swiper 6.3.3 自动滚屏,鼠标悬停相关的知识,希望对你有一定的参考价值。

参考技术A 安装swiper

引入插件及样式

参考文档: https://swiperjs.com/react/

react native 中使用swiper

1.下载依赖

cnpm install react-native-swiper --save 

2.在组件中使用

import React, { Component } from ‘react‘;
import { StyleSheet, View,Dimensions,Image} from ‘react-native‘;
import Swiper from ‘react-native-swiper‘;
export default class SideItem extends Component {
    render(){
        return(
            <View style={styles.container}>
                <Swiper
                    style={styles.swiper}
                    height={220}
                    horizontal={true}
                    autoplay={true} 
                    paginationStyle={{bottom: 20}}
                    showsButtons={false}>
                    <Image source={require(‘../assets/images/1.png‘)} style={styles.img}/>
                    <Image source={require(‘../assets/images/2.png‘)} style={styles.img}/>
                    <Image source={require(‘../assets/images/3.png‘)} style={styles.img}/>
                </Swiper>
            </View>
        )
    }
}

const styles = StyleSheet.create({
    container: {
        flex: 1
    },
    swiper: {},
    img: {
        width: Dimensions.width,
        height: 200,
    }
});

3.运行run-Android

技术分享图片

 

以上是关于react 中使用Swiper 6.3.3 自动滚屏,鼠标悬停的主要内容,如果未能解决你的问题,请参考以下文章

react使用swiper轮播

在react项目中使用Swiper模板

react-native-swiper使用的坑

如何在 React 中操作 swiper.js 的幻灯片数组?

react-native-swiper 按钮无法正常工作

react-native使用Swiper在安卓上不显示