Add custom buttons on Slick Carousel

前端 未结 11 690
迷失自我
迷失自我 2020-12-23 14:23

How do I apply custom prev and next buttons to slick carousel? I have tried a background image on the .slick-prev and .slick-next css classes. I ha

11条回答
  •  盖世英雄少女心
    2020-12-23 14:55

    If you're using Bootstrap 3, you can use the Glyphicons.

    .slick-prev:before, .slick-next:before {
        font-family: "Glyphicons Halflings", "slick", sans-serif;
        font-size: 40px;
    }
    
    .slick-prev:before { content: "\e257"; }
    .slick-next:before { content: "\e258"; }
    

提交回复
热议问题