我使用Bootstrap旋轉木馬來顯示圖像及其各自的標題。圖像可以是人像,風景。對齊Bootstrap旋轉木馬圖像
我能夠正確顯示轉盤中的橫向圖像,其標題如下。在縱向圖像的情況下,我試圖將中心圖像對齊到右側,使其不與標題重疊。我更改了文件bootstrap.min.css中的CSS屬性,但它不起作用。
CSS代碼 ...
.carousel-inner {
position: relative;
align: right;
width: 100%;
overflow: hidden;
任何想法如何使肖像形象的權利,而不會影響其他2個圖像?
obj參數包含圖像src,標題的詳細信息。這些值由被調用到後端服務的ajax函數返回。
HTML代碼..
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery-1.11.3.min.js"></script>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<div id="carouselObject">
<div id="carousel-example-generic" class="carousel slide" data-pause="true" data-interval="5000000"> <!--data-interval= 5000 seconds-->
<div class="carousel-inner" role="listbox" id="carouselinner">
</div>
<a class="left carousel-control" href="#/carousel-example-generic" role="button"> <!--data-slide="prev"-->
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true" onclick="loadPrevSlide()" id="leftcarouselbutton"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#/carousel-example-generic" role="button"> <!--data-slide="next"-->
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true" onclick="loadNextSlide()" id="rightcarouselbutton"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
你能做一個小提琴嗎? – Raviteja