twitter bootstrap custom carousel indicators

前端 未结 2 879
暗喜
暗喜 2021-01-14 01:24

I want to change the carousel indicators with something like this:

\"custom

I ha

2条回答
  •  逝去的感伤
    2021-01-14 02:07

    You could use media query -

    @media screen and (max-width:480px) {
         .carousel-indicators li{
            background: url(images/triangle.png) no-repeat;
            background-size:120px 60px;
            width:120px;
            height:60px;
            cursor: pointer;
            text-align:center;
        }
    

提交回复
热议问题