删除Bootstrap Carousel中的箭头 [英] Removing arrows in Bootstrap Carousel

查看:959
本文介绍了删除Bootstrap Carousel中的箭头的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这里是我的博客的主页www.lowcoupling.com
我不想在引导旋转木马中显示左右箭头
我试过了

here is the homepage of my blog www.lowcoupling.com I'd like not show the left and right arrows in the bootstrap carousel I have tried

.glyphicon-chevron-right{
     display:none;
}

(左箭头也一样)

(and the same thing for the left arrow) but it does not seem to work.

推荐答案

这将隐藏按钮

.right.carousel-control, .left.carousel-control {
    display: none;
}

如果您仍然希望能够单击按钮的绘制位置:

If you still want to be able to click where the button is drawn, do:

.right.carousel-control, .left.carousel-control {
    opacity: 0;
    filter:alpha(opacity=0); /* IE support */
}

这篇关于删除Bootstrap Carousel中的箭头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆