記事内に広告を含む場合があります
詳しく見る公開日:2020.12.22
更新日:2022.05.02
Bootstrapのカルーセルを背景画像として表示させるコピペサンプル
Bootstrapにはカルーセルが備わっていますが、背景画像(background-image)ではなくimgタグで表示させるよう作られています。
でもカルーセルスライダーって結局、使いたい場面はトップページのファーストビューで画面いっぱい表示だったり、背景画像としてが多いですよね。
そこでBootstrapで用意されているhtmlを少し書き換えて、CSSにも少し書き足すことで背景画像でのカルーセルを作ることが簡単にできましたので紹介します。
以下、コピペでCSS側に画像のパスだけ当ててあげればオッケーです。
HTML
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="carouselExampleFade" class="carousel slide carousel-fade" data-ride="carousel"> | |
<div class="carousel-inner bgCarousel"> | |
<div class="carousel-item bgCarousel__item active"></div> | |
<div class="carousel-item bgCarousel__item"></div> | |
<div class="carousel-item bgCarousel__item"></div> | |
</div> | |
</div> |
元のコードはこちら、ふわっとフェードで切り替わるタイプのものです↓
Bootstrap日本語公式リファレンス Carousel#crossfade
元のコードからimgタグをまるっと削除して、既存のdivタグにクラスを当てた形ですね。
そしてそのクラスに、CSS側で背景画像を適用します。
SCSS
SASSお使いのかたはこちらから
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.bgCarousel { | |
height: 500px; | |
width: 100vw; //背景のサイズはお好みで | |
&__item { | |
background-position: center center; | |
background-repeat: no-repeat; | |
background-size: cover; | |
width: 100%; | |
height: 100%; | |
&:nth-child(1) { | |
background-image: url(画像のパス/1.jpg); | |
} | |
&:nth-child(2) { | |
background-image: url(画像のパス/2.jpg); | |
} | |
&:nth-child(3) { | |
background-image: url(画像のパス/3.jpg); | |
} | |
} | |
} |
nth-child()で「何番目のスライダー」とそれぞれ背景画像を指定していきます。
4枚並べる場合は単純に19行目に書き足す形ですね。
CSS
CSSで書かれているかたはこちらから
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.bgCarousel { | |
height: 500px; | |
width: 100vw; | |
} | |
.bgCarousel__item { | |
background-position: center center; | |
background-repeat: no-repeat; | |
background-size: cover; | |
width: 100%; | |
height: 100%; | |
} | |
.bgCarousel__item:nth-child(1) { | |
background-image: url(画像のパス/1.jpg); | |
} | |
.bgCarousel__item:nth-child(2) { | |
background-image: url(画像のパス/2.jpg); | |
} | |
.bgCarousel__item:nth-child(3) { | |
background-image: url(画像のパス/3.jpg); | |
} |