ant design 轮播图左右两边加箭头

发布时间 2023-03-23 11:07:53作者: chenlw101
 <Carousel  autoplay arrows={true} prevArrow={<LeftOutlined />} nextArrow={<RightOutlined />}> </Carousel>

  

.ant-carousel .slick-prev,
.ant-carousel .slick-prev:hover {
  left: 10px;
  z-index: 2;
  color: white;
  font-size: 20px;
  height: 50px;
  width: 40px;
  line-height: 50px;
  background-color: rgba(0,0,0,0.2);
}

.ant-carousel .slick-next,
.ant-carousel .slick-next:hover {
  right: 10px;
  z-index: 2;
  color: white;
  font-size: 20px;
  height: 50px;
  width: 40px;
  line-height: 50px;
  background-color: rgba(0,0,0,0.2);
}