gpt4 book ai didi

css - twitter bootstrap 自定义轮播指标

转载 作者:行者123 更新时间:2023-11-28 08:42:23 25 4
gpt4 key购买 nike

我想用这样的东西来改变轮播指示器:

custom  carousel indicators

我的轮播指示器有以下标记:

<ol class="carousel-indicators">


<li data-target="#ShowCarousel-03" data-slide-to="0" class="active">
<h4>IMAGE1</h4><br/><h5>subtitle</h5><br/><span>+</span>
</li>


<li data-target="#ShowCarousel-03" data-slide-to="0" class="active">
<h4>IMAGE2</h4><br/><h5>subtitle</h5><br/><span>+</span>
</li>
<li data-target="#ShowCarousel-03" data-slide-to="2">
<h4>IMAGE3</h4><br/><h5>subtitle</h5><br/><span>+</span>
</li>
<li data-target="#ShowCarousel-03" data-slide-to="0" class="active">
<h4>IMAGE4</h4><br/><h5>subtitle</h5><br/><span>+</span>
</li>

</ol>

CSS:

    .carousel-indicators {
position: absolute;
top: 0px;
left: 0px;
z-index: 5;
margin: 0;
list-style: none;
}
.carousel-indicators li{
background: url(images/triangle.png) no-repeat;
width:320px;
height:176px;
cursor: pointer;
text-align:center;
}

当我调整浏览器大小时,轮播会适应屏幕宽度,但指示器会折叠。

有人可以帮我提示一下如何在较低分辨率下也能像轮播图片那样制作这种比例吗?

谢谢!

L.E:

我试过像这样放置 li 元素:

 <div class="row-fluid">
<div class="span3>
<li data-target="#ShowCarousel-03" data-slide-to="0" class="active">
<h4>IMAGE1</h4><br/><h5>subtitle</h5><br/><span>+</span>
</li>
<div class="span3>
<li data-target="#ShowCarousel-03" data-slide-to="0" class="active">
<h4>IMAGE1</h4><br/><h5>subtitle</h5><br/><span>+</span>
</li>

<div class="span3>
<li data-target="#ShowCarousel-03" data-slide-to="0" class="active">
<h4>IMAGE1</h4><br/><h5>subtitle</h5><br/><span>+</span>
</li>
</div>
</div>

但它不起作用。

最佳答案

它正在折叠,因为轮播指示器的宽度为 320 像素。如果您还希望您的代码在移动设备上响应,则无法修复。您可以替换百分比而不是使用固定宽度

.carousel-indicators li{
background: url(images/triangle.png) no-repeat;
max-width:25%;
max-height:15%; /*or any other percentage that would look good*/
cursor: pointer;
text-align:center;
}

请注意,我使用了 max-height 和 max-height 以便我可以保持图像的比例,这样它就不会在任何一个方向上都被拉伸(stretch)。

关于css - twitter bootstrap 自定义轮播指标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15844157/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com