swiper使用方法?

简介: swiper使用方法?

vant组件

带小点点的 可以实现跳转的一个效果

import { Swiper } from 'react-vant';

每个 Swiper.Item 代表一张轮播卡片,可以通过 autoplay 属性设置自动轮播的间隔。

import React from 'react';
import { Swiper } from 'react-vant';
import { items } from './demo/items';
import './demo/base.less';
 
export default () => {
  return (
    <div className="demo-swiper">
      <Swiper autoplay={5000}>{items}</Swiper>
    </div>
  );
};

这里的 swiper 标签上 5000  是间隔时间

import React from 'react'
import { Swiper, Toast } from 'react-vant'
 
const colors = ['#ace0ff', '#bcffbd', '#e4fabd', '#ffcfac']
 
export const items = colors.map((color, index) => (
  <Swiper.Item key={color}>
    <div
      onClick={() => {
        Toast.info(`你点击了卡片 ${index + 1}`)
      }}
    >
      {index + 1}
    </div>
  </Swiper.Item>
))
相关文章
|
8月前
|
小程序 API 索引
uniapp中uview组件库中丰富的Picker 选择器用法
uniapp中uview组件库中丰富的Picker 选择器用法
1415 0
|
8月前
|
移动开发 小程序 API
uniapp组件库Modal 模态框 的使用方法
uniapp组件库Modal 模态框 的使用方法
519 1
|
8月前
|
移动开发 小程序 API
uniapp组件库Popup 弹出层 的使用方法
uniapp组件库Popup 弹出层 的使用方法
560 1
|
8月前
|
传感器 算法 搜索推荐
stylus使用方法
stylus使用方法
75 0
|
8月前
|
JSON JavaScript 数据格式
【经验分享】如何使用scroll-view + swiper制作tabs导航条组件。
【经验分享】如何使用scroll-view + swiper制作tabs导航条组件。
82 6
|
8月前
|
移动开发 小程序 JavaScript
uniapp中组件库的Textarea 文本域的丰富使用方法
uniapp中组件库的Textarea 文本域的丰富使用方法
291 0
|
8月前
|
小程序 API 索引
uniapp中uview组件库的DatetimePicker 选择器的用法
uniapp中uview组件库的DatetimePicker 选择器的用法
1456 0
|
8月前
|
小程序 JavaScript 容器
小程序的swiper组件
小程序的swiper组件
128 0
|
JavaScript 前端开发 编译器
Swiper插件的基本使用方法和案例(一)
Swiper插件的基本使用方法和案例