ブートストラップのカルーセルを使ってサイトを作るためにやったことは...
<div id = "myCarousel" class = "carousel slide">
<div class = "carousel-inner">
<!--each slide goes here-->
<div class = "item active">
<img src = "your image here..." class = "img-responsive">
</div><!--end itemactive-->
<div class = "item">
<img src = "your image here..." class = "img-responsive">
</div><!--end itemactive-->
<!--etc-->
</div><!--end carousel-inner-->
</div><!--end carouselslide-->
次にCSSで、私は
#myCarousel
{
background-image:url(your background image path here);
}
#myCarousel.carousel-inner
{
width: 80%; /*carousel width size here - my example will use 80%, if you want the carousel to fill entire screen, then just remove this width element.*/
margin-left: auto;
margin-right: auto;
/*These two margins are to center the carousel if you set a smaller width. :) */
}
ちなみに、bootstrap.min.cssを使用しました。