前提・実現したいこと
現在制作中のWEBページでSwiperを使ってスライドショーを実装しています。
このスライドショーのすぐ下に「画像はイメージです」というテキストをスライドはさせずに固定したいのですが、方法がわからず苦戦しています。
発生している問題・エラーメッセージ
テキスト部分が表示されない
該当のソースコード
HTML
1<section class="slider"> 2 <div class="container"> 3 <div class="swiper-parent"> 4 <div class="swiper-container"> 5 <div class="swiper-wrapper"> 6 <div class="swiper-slide"><img src="slide1.png" alt=""></div> 7 <div class="swiper-slide"><img src="slide2.png" alt=""></div> 8 <div class="swiper-slide"><img src="slide3.png" alt=""></div> 9 </div> 10 <p class="notice">画像はイメージです</p> 11 <div class="swiper-pagination swiper-pagination-white"></div> 12 </div> 13 <div class="swiper-button-prev"></div> 14 <div class="swiper-button-next"></div> 15 </div> 16 </div> 17 </section>
CSS
1.swiper-parent { 2 position: relative; 3} 4 5.swiper-container { 6 padding: 20px 10px; 7 height: 40vw; 8 max-height: 600px; 9 min-height: 400px; 10 width: 75%; 11 position: relative; 12} 13 14.swiper-slide { 15 text-align: center; 16 line-height: 1; 17 display: flex; 18 align-items: flex-start; 19 justify-content: center; 20} 21 22.swiper-slide img { 23 display: inline; 24 width: auto; 25 max-width: 100%; 26 max-height: 100%; 27 align-self: center; 28} 29 30.swiper-pagination { 31 position: absolute; 32 bottom: 8px; 33 left: 0; 34 right: 0; 35 margin: auto; 36} 37 38.swiper-pagination span { 39 margin: 0 3px; 40} 41 42.swiper-button-prev { 43 left: 7% !important; 44 background-image: url(../images/icon/swiper-left.png) !important; 45} 46 47.swiper-button-next { 48 right: 7% !important; 49 background-image: url(../images/icon/swiper-right.png) !important; 50} 51
js
1var mySwiper = new Swiper('.swiper-container', { 2 loop: true, 3 slidesPerView: 1.4, 4 spaceBetween: 20, 5 centeredSlides : true, 6 pagination: '.swiper-pagination', 7 nextButton: '.swiper-button-next', 8 prevButton: '.swiper-button-prev', 9 autoplay: 2000, 10 breakpoints: { 11 1400: { 12 spaceBetween: 10 13 }, 14 767: { 15 spaceBetween: 10 16 }, 17 468: { 18 height: 500 19 } 20 } 21});
試したこと
テキストのクラスnotice
に display: block !important;
をつけてみたりしましたが、表示されませんでした。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。