我想用这样的东西改变旋转木马指示器:
我的旋转木马指示器有这个标记:
<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>
但它不起作用。
答案 0 :(得分:2)
它正在崩溃,因为您的旋转木马指示器的宽度是320px。如果您还希望代码在移动设备上做出响应,则无法修复。您可以替换百分比而不是使用固定宽度
.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,这样我就可以保持图像的比例,使其不会向任何一个方向伸展。
答案 1 :(得分:1)
您可以使用媒体查询 -
@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;
}