antd跑马灯实现左右箭头切换(React版本)

文章展示了如何在React应用中使用antd库创建轮播图,并在antd默认功能基础上自定义添加左右点击切换的功能。通过设置ref并绑定onClick事件,实现了手动切换轮播图的效果。
摘要由CSDN通过智能技术生成

我们在查找antd官网,使用轮播图的时候,发现左右点击切换轮播图被去掉了,这个功能也没有。既然没有那就实现一个吧。

效果:

react部分代码

import React, { useRef } from 'react'
import { Carousel } from 'antd';
import styles from './index.less'

const Screen = () => {
    const myRef = useRef(null);
    return (
        <div className={styles.wrap}>
            <div className={styles.btnLeft} onClick={() => { myRef?.current?.prev?.() }}>&lt;</div>
            <div className={styles.btnRight} onClick={() => { myRef?.current?.next?.() }}>&gt;</div>
            <Carousel autoplay effect="fade" ref={myRef} dots={false}  >
                <div>
                    <div key={'1'} className={styles.content1} >111</div>
                </div>
                <div>
                    <div key={'2'} className={styles.content2} >222</div>
                </div>
                <div>
                    <div key={'3'} className={styles.content3} >333</div>
                </div>
                <div>
                    <div key={'4'} className={styles.content4} >444</div>
                </div>
            </Carousel>
        </div>

    )
}

export default Screen

index.less

.wrap {
    height: 100vh;
    position: relative;

    :global(.ant-carousel .slick-prev,
        .ant-carousel .slick-next,
        .ant-carousel .slick-prev:hover,
        .ant-carousel .slick-next:hover) {
        font-size: inherit;
        color: currentColor;
    }

    .content1 {
        margin: 0;
        height: 100vh;
        color: white;
        text-align: center;
        background: #364d79;
        line-height: 100vh;
    }

    .content2 {
        margin: 0;
        height: 100vh;
        color: white;
        text-align: center;
        background: #364d79;
        line-height: 100vh;

    }

    .content3 {
        margin: 0;
        height: 100vh;
        color: white;
        text-align: center;
        background: #364d79;
        line-height: 100vh;

    }

    .content4 {
        margin: 0;
        height: 100vh;
        color: white;
        text-align: center;
        background: #364d79;
        line-height: 100vh;

    }


    .btnLeft {
        position: absolute;
        top: 50%;
        left: 15px;
        color: white;
        font-size: 40px;
        z-index: 10;
        cursor: pointer;
    }

    .btnRight {
        position: absolute;
        top: 50%;
        right: 15px;
        color: white;
        font-size: 40px;
        z-index: 10;
        cursor: pointer;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值