文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php教程>react swipe用法是什么

react swipe用法是什么

时间:2021-12-03  来源:互联网

今天PHP爱好者为您带来react swipe的使用方法:1、通过“npm install swiper -s”在react项目中安装swiper;2、引入“import React,{Component} from 'react'...”即可。希望对大家有所帮助。

本文操作环境:Windows7系统、react17.0.1、Dell G3。

react swipe用法是什么?

React中使用swiper

虽然用ui框架有很多是有轮播图,走马灯的,但是有时候我们的需求是这些都无法满足的,
在这里我这个遇到了要求图文列表可以左右滑动的情况,找了很久还是swiper适合我
下面展示一下我的用法:

首先,react项目中安装swiper

npm install swiper -s

然后再需要用到swiper的组件中引入:

import React,{Component} from 'react'
import './new.css'
import Swiper from 'swiper/dist/js/swiper.js'
import 'swiper/dist/css/swiper.min.css'
class New extends Component{
   constructor(props){
       super(props);
       this.state={
           newlist:[0,1,2,3,4,5,6]
       }
   }
   componentDidMount() {
       new Swiper('.swiper-container', {
           slidesPerView: 3,
           centeredSlides: true,
           virtual: {
               slides:this.state.newlist,
           }
       })
   }
   render(){
       return(
           <p className='new'>
               <p className="swiper-container">
                   <p className="swiper-wrapper">
                   </p>
               </p>
           </p>          
       )
   }
}
export default New;

效果是这样的:

79c203ee7e95305fdbc93956f794f72.png

可以左右滑动

以上就是react swipe用法是什么的详细内容,更多请关注php爱好者其它相关文章!

相关阅读更多 +
最近更新
排行榜 更多 +
元梦之星最新版手游

元梦之星最新版手游

棋牌卡牌 下载
我自为道安卓版

我自为道安卓版

角色扮演 下载
一剑斩仙

一剑斩仙

角色扮演 下载