首页 > 其他分享 >ant design 轮播图左右两边加箭头

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

时间:2023-03-23 11:11:21浏览次数:31  
标签:轮播 color 50px slick height ant design carousel

 <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);
}

  

标签:轮播,color,50px,slick,height,ant,design,carousel
From: https://www.cnblogs.com/chenlw/p/17246731.html

相关文章