/ / sa snažia dostať Bootstrap 3 kolotoč, aby sa zmestili na celú obrazovku? - rubínovo na koľajniciach, twitter-bootstrap, twitter-bootstrap-3, celoobrazovkový, karusel

sa snažia dostať Bootstrap 3 kolotoč, aby sa zmestili na celú obrazovku? - rubíny na koľajniciach, twitter-bootstrap, twitter-bootstrap-3, celá obrazovka, karusel

Keď spustím tento obraz a pretekanie karuselu a musíte prejsť dolu na stránku vidieť spodok obrazu a kolotoč ...

<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
<li data-target="#carousel-example-generic" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->

<div class="carousel-inner">
<div class="item active">
<img src= "/assets/run3.jpg" width = "100%" alt="photo">
<div class="carousel-caption">
<h3>Sign Up Now!</h3>
<p>This is Where amazing happens</p>
</div>
</div>


<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>

tu sa deje: dropbox.com/sh/tdo3928f453123h/jTbquZNM37

odpovede:

0 pre odpoveď č. 1

Môžete vynútiť svoj posuvník a šírku a výšku obrazu:

#carousel-example-generic,
#carousel-example-generic .item,
#carousel-example-generic .item img {
height: 100%;
}
#carousel-example-generic .item img {
width: 100%;
}

Bootply

Poznámka: toto nebude mať rozdiely, ale mohlo by to vyhovovať vašim potrebám.