カテゴリー
Linux コンピューター

【Laravel9 Vite Vue.js 3】 Swiper でサムネイル付きのスライドショー SFC を作成する記録

やりたいこと

  • Vue.js 3
  • Swiper の SFC への入力
    • 画像 URL の配列
  • Swiper の SFC からの出力
    • 特になし。
    • スライドショー、フォトギャラリーがウェブブラウザに描画される
      • サムネイルあり

導入

npm install --save-dev swiper

swiper 8.3.2 がインストールされました。

サンプルをそのまま SFC にする

まずは、サンプルがそのまま動かすことを目指しました。やりたいのは、サムネイル付きのスライドショーです。

公式ドキュメントにちょうど良い例がありました。

Vue のサンプルはそのままでは動きませんでしたが、少し修正して、再現することができました。

まず、 Swiper サムネイルスライドショー SFC を呼び出す側のコードです。

  • スライド画像は URL を配列で SFC に渡すことを想定。

App.vue

<template>
  <BaseSwiper :images="images" />
</template>

<script setup>
import BaseSwiper from "@/components/BaseSwiper.vue";

const images = [
  "https://i.picsum.photos/id/925/600/400.jpg?hmac=VxvBfviRrdHXsJ6_nbZ00wdqs0AEutxmI1ughFU8KQU",
  "https://i.picsum.photos/id/428/600/400.jpg?hmac=grP0p8M-3MohHSsDfu7ZXo9VGbL-OUSCDScCUZu8ps4",
  "https://i.picsum.photos/id/340/600/400.jpg?hmac=fUPfZKTRNEKns8xR8vPzDByTCfY9cEbh5lFLG8rP8H8",
  "https://i.picsum.photos/id/702/600/400.jpg?hmac=KxRAc7VlNyemdt4RTHqjBvy9heWN7FV0qHG_U2OyOjo",
];
</script>

続いて、呼び出されるサムネイルスライドショー SFC です。

  • <script setup> で書いた。
  • スタイルが長いが、そこは本質ではない。
  • <style scoped> の方がベターと思うが、ここでは <style> とした。

BaseSwiper.vue

<template>
  <swiper
    :style="{
      '--swiper-navigation-color': '#fff',
      '--swiper-pagination-color': '#fff',
    }"
    :space-between="10"
    :navigation="true"
    :thumbs="{ swiper: thumbsSwiper }"
    :modules="modules"
    class="mySwiper2"
  >
    <swiper-slide v-for="(image, index) in images" :key="index"
      ><img :src="image"
    /></swiper-slide>
  </swiper>
  <swiper
    :space-between="10"
    :slides-per-view="4"
    :free-mode="true"
    :watch-slides-progress="true"
    :modules="modules"
    class="mySwiper"
    @swiper="setThumbsSwiper"
  >
    <swiper-slide v-for="(image, index) in images" :key="index"
      ><img :src="image"
    /></swiper-slide>
  </swiper>
</template>
<script setup>
import "swiper/css";
import "swiper/css/free-mode";
import "swiper/css/navigation";
import "swiper/css/thumbs";
import { FreeMode, Navigation, Thumbs } from "swiper";
import { ref } from "vue";
import { Swiper, SwiperSlide } from "swiper/vue";

defineProps({
  images: {
    type: Array,
    default: () => [],
    required: false,
  },
});

const thumbsSwiper = ref(null);

const setThumbsSwiper = (swiper) => {
  thumbsSwiper.value = swiper;
};

const modules = [FreeMode, Navigation, Thumbs];
</script>

<style>
#app {
  height: 100%;
}
html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #eee;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body {
  background: #000;
  color: #000;
}

.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
</style>

ここらへんで公式ドキュメントを少し読み込み、わかったことを羅列する

  • Vue.js で Swiper を使う使い方はこのページを読む。ただ、いきなりこのページを読んでも Swiper のコンセプト等がさっぱりわからないのであまり理解できない。なんとなく、 Vue.js で Swiper を使うのは簡単なように用意してくれているんだな、ということを感じる。
  • Vue.js の <template> 部分はどのような形となることを意識すれば良いのかは次のページで掴めた。 Vue.js で使いやすいように Swiper が既に SFC を用意してくれており大変ありがたい。が、逆に HTML としてどのようなコードでレンダリングされるのか、 class とかは何を当てる必要があるのか、が見えづらく理解を妨げる結果に繋がっていた。それが、解消された。
  • style も Swiper ライブラリから読み込んで使うのはわかったが、 SCSS にも対応しているのか、へぇーと思った。 Bootstrap 5 をベースにすることが多く、これの、カスタマイズは SCSS が必要。なのでもしかしたら Swiper も同時に扱う際には、 Swiper にも SCSS があるという点が重要になってくるかもしれない。とはいえ、今回はそこまで検証するつもりは無い。
  • サムネイル付きスライドショーを作るには Swiper を 2 つ独立して作り、それぞれを連携させることで実現するようだ。

素敵なサンプルを再現したい。

こちらの例が、最新の Swiper を使っており、公式のデモよりも実際のウェブサイトで使いやすいと感じました。これを Vue.js の SFC として再現することを目指します。

<html> の構造と <script> 部分は、今までのサンプルをほぼそのまま使えるはずで、修正の主たる部分はおそらく <style> となるはずです。

最終的には「#08 応用 サムネイル(非スライダー)を付けて連動」を目指したいですが、少し複雑そうですので、「#07 基本 サムネイル(スライダー)を付けて連動させる」をまず再現したいと思います。

わかったこと

  • <div class="swiper"> にさらに class を追加したい場合、単に class="swiper-main" などとすれば良い。 v-bind は不要で、それは一番外側のタグだからであろう。
  • Swiper APISwiper Vue.js Components を読めばなんとかなった。

#07 基本 サムネイル(スライダー)を付けて連動させる – 【最新v8】Swiperの使い方・実用的なデモ15個の解説 ー基礎から応用までー – 東京のホームページ制作 / WEB制作会社 BRISK をほぼ再現 (スタイルがうまくいかない) したもの

できたものです。

ポイントです。

  • <template> の swiper 部分以外は構造をコピペした。
  • <script> は実装した。
  • スタイルはコピペ。長いだけなので飛ばして良い。ここをうまく調整できなかった、しなかった、のでスタイルが崩れている。
    • ナビゲーションの位置がおかしい。戻るナビゲーションが画像にめり込んでいる。
    • サムネイルのスクロールバーのスタイルがおかしい。
  • <style scoped> の方がベターと思うが、そのようにするとスライドショーの次へ、前へバタンが表示されなくなったため、ここでは <style> とした。

コードです。 BaseSwiper2.vue

<template>
  <div class="l-wrapper">
    <main>
      <div class="gallery01 l-section">
        <div class="l-inner">
          <!-- スライドショー -->
          <swiper
            :effect="'fade'"
            :fade-effect="{ crossFade: true }"
            :speed="500"
            :navigation="{
              nextEl: '.gallery01 .swiper-button-next',
              prevEl: '.gallery01 .swiper-button-prev',
            }"
            :thumbs="{ swiper: thumbsSwiper }"
            :modules="modules"
            class="swiper-main"
          >
            <swiper-slide v-for="(image, index) in images" :key="index">
              <figure class="slide">
                <div class="slide-media"><img :src="image" alt="" /></div>
                <figcaption class="slide-title">
                  index: {{ index }} 番目の画像。
                </figcaption>
              </figure>
            </swiper-slide>
            <template #container-end>
              <div class="swiper-controller">
                <div class="swiper-button-prev"></div>
                <div class="swiper-button-next"></div>
              </div>
            </template>
          </swiper>

          <!-- サムネイル -->
          <swiper
            :slides-per-view="5"
            :space-between="8"
            :grab-cursor="true"
            :scrollbar="{ el: '.gallery01 .swiper-scrollbar', draggable: true }"
            :breakpoints="{ 600: { slidesPerView: 7 } }"
            :modules="modules"
            class="swiper-thumb"
            @swiper="setThumbsSwiper"
          >
            <swiper-slide v-for="(image, index) in images" :key="index">
              <div class="thumb-media"><img :src="image" alt="" /></div>
            </swiper-slide>
            <template #container-end
              ><div class="swiper-scrollbar"></div
            ></template>
          </swiper>
        </div>
      </div>
    </main>
  </div>
</template>
<script setup>
import "swiper/css";
import "swiper/css/effect-fade";
import "swiper/css/navigation";
import "swiper/css/scrollbar";
import "swiper/css/thumbs";
import { EffectFade, Navigation, Scrollbar, Thumbs } from "swiper";
import { ref } from "vue";
import { Swiper, SwiperSlide } from "swiper/vue";

defineProps({
  images: {
    type: Array,
    default: () => [],
    required: false,
  },
});

const thumbsSwiper = ref(null);

const setThumbsSwiper = (swiper) => {
  thumbsSwiper.value = swiper;
};

const modules = [EffectFade, Navigation, Scrollbar, Thumbs];
</script>

<style>
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;700&display=swap");
:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #f5695f;
  --color-theme-darken: #f12617;
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
    -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08),
    -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
    inset -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1),
    -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}

html {
  font-family: "Spartan", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
    "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
  line-height: 1.8;
  height: 100%;
  word-break: break-word;
  color: #333;
  background-color: var(--color-base);
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 1.6rem;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-moz-selection {
  color: #fff;
  background: var(--color-theme);
}

::selection {
  color: #fff;
  background: var(--color-theme);
}

img {
  border: 0;
  margin: 0;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #333;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.6rem;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10rem;
}

.l-section {
  border-top: 1px solid #eee;
}
.l-section .l-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

[class*="swiper"]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.gallery01 {
  overflow: hidden;
}
.gallery01 .swiper {
  max-width: 720px;
  margin: auto;
}
.gallery01 .swiper-main {
  overflow: visible;
}
.gallery01 .swiper-thumb {
  padding-top: 8px;
}
.gallery01 .swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}
.gallery01 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.gallery01 .swiper-controller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 62.5%;
}
.gallery01 .swiper-button-prev,
.gallery01 .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
.gallery01 .swiper-button-prev {
  right: calc(100% + 3.2rem);
}
.gallery01 .swiper-button-next {
  left: calc(100% + 3.2rem);
}
.gallery01 .swiper-scrollbar {
  position: relative;
  margin-top: 1.6rem;
}
.gallery01 .swiper-scrollbar::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  margin: auto;
  content: "";
  background-color: #eee;
}
.gallery01 .swiper-scrollbar-drag {
  height: 20px;
  padding: 8px 0;
  cursor: pointer;
  background-color: var(--color-theme);
  background-clip: content-box;
}
.gallery01 .swiper-scrollbar-drag:active {
  background-color: var(--color-theme-darken);
}
.gallery01 .slide {
  display: block;
  overflow: hidden;
}
.gallery01 .slide-media {
  padding-top: 62.5%;
  border-radius: 4px;
}
.gallery01 .slide-media img {
  -o-object-fit: contain;
  object-fit: contain;
}
.gallery01 .slide-title {
  font-weight: bold;
  line-height: 1.6;
  padding: 3.2rem 0;
}
.gallery01 .thumb-media {
  padding-top: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 4px;
}
.gallery01 .thumb-media img {
  height: calc(100% + 8px);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
.gallery01 .swiper-slide-thumb-active {
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0.3;
}
.gallery01 .swiper-slide-thumb-active .thumb-media {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
.gallery01 .swiper-slide-thumb-active .thumb-media img {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  .l-inner {
    padding: 0 4rem;
  }
  .pc {
    display: none !important;
  }
  .gallery01 .swiper-button-prev::before,
  .gallery01 .swiper-button-next::before {
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: var(--box-shadow-dark);
    box-shadow: var(--box-shadow-dark);
  }
  .gallery01 .swiper-button-prev::after,
  .gallery01 .swiper-button-next::after {
    border-color: #fff;
  }
  .gallery01 .swiper-button-prev {
    right: calc(100% - 3.2rem);
  }
  .gallery01 .swiper-button-next {
    left: calc(100% - 3.2rem);
  }
}

@media only screen and (max-width: 599px) {
  html {
    font-size: 50%;
  }
  .pc-tab {
    display: none !important;
  }
}

@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
  .swiper-button-prev::before,
  .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .swiper-button-prev:hover::before,
  .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .gallery01 .swiper-scrollbar-drag:hover {
    background-color: var(--color-theme-darken);
  }
  .gallery01 .thumb-media:hover {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
  }
  .gallery01 .thumb-media:hover img {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media only screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
</style>

#08 応用 サムネイル(非スライダー)を付けて連動 – 【最新v8】Swiperの使い方・実用的なデモ15個の解説 ー基礎から応用までー – 東京のホームページ制作 / WEB制作会社 BRISK をほぼ再現 (スタイルはやっぱりうまくいかない) したもの

できたものです。

ポイントです。

  • 2つの Swiper スライドショーを組み合わせるのかと思いきや、使うのは 1 つの Swiper だけだった。サムネイルは、画像をただ単に表示したものにスタイルを当てたもので、全ての画像を表示するのだからそりゃそうかと後になって納得した。
  • <template> で使っている Swiper を <script setup> 内でも扱いたかった (結局あまりにも内容が単純だったので v-on の中に書いてしまったが。ソースコードの @click="mySwiper.slideTo(image.index)" 部分)useSwiper – Swiper Vue.js Components でできるのかなと思ったが、使い方が悪かったのかできなかった。そこで、参考元のソースコードでも使用していた afterInit イベントの引数として渡ってくる Swiper を使うことにした。
    • afterInit イベントを最初使ったが、 Swiper events – Swiper Vue.js Components に次のようにあったので、可能な限り最速で swiper インスタンスを得られる @swiper を使うことにした。

      Swiper component supports all Swiper events, including additional swiper event that returns swiper instance as soon as possible.

  • 元のソースコードでは class 属性の値を変更するために DOM 操作を行なっていた。 Vue.js を使っているのに DOM 操作を安易に使うのは台無しなので、試行錯誤したら DOM 操作は全く行わないようにソースコードを書けた。
  • <style scoped> の方がベターと思うが、そのようにするとスライドショーの次へ、前へバタンが表示されなくなったため、ここでは <style> とした。

コンポーネントファイルのソースコードです。 BaseSwiper3.vue

<template>
  <div class="l-wrapper">
    <main>
      <div id="demo08" class="gallery02 l-section">
        <div class="l-inner">
          <!-- スライドショー -->
          <swiper
            :effect="'fade'"
            :fade-effect="{ crossFade: true }"
            :speed="500"
            :navigation="{
              nextEl: '.gallery02 .swiper-button-next',
              prevEl: '.gallery02 .swiper-button-prev',
            }"
            :modules="modules"
            @swiper="onSwiper"
            @slide-change="onSlideChange"
          >
            <swiper-slide
              v-for="(image, index) in computedImages"
              :key="image.index"
            >
              <figure class="slide">
                <div class="slide-media"><img :src="image.value" alt="" /></div>
                <figcaption class="slide-title">
                  index: {{ index }} 番目の画像。
                </figcaption>
              </figure>
            </swiper-slide>
            <template #container-end>
              <div class="swiper-controller">
                <div class="swiper-button-prev"></div>
                <div class="swiper-button-next"></div>
              </div>
            </template>
          </swiper>

          <!-- サムネイル -->
          <div class="thumb-wrapper">
            <div
              v-for="image in computedImages"
              :key="image.index"
              class="thumb-media"
              :class="image.classObject"
              @click="onClickThumb(image.index)"
            >
              <img :src="image.value" alt="" />
            </div>
          </div>
        </div>
      </div>
    </main>
  </div>
</template>

<script setup>
import "swiper/css";
import "swiper/css/effect-fade";
import "swiper/css/navigation";
import { EffectFade, Navigation } from "swiper";
import { Swiper, SwiperSlide } from "swiper/vue";
import { computed, ref } from "vue";

const props = defineProps({
  images: {
    type: Array,
    default: () => [],
    required: false,
  },
});

/*
 * スライドショーとサムネイルの連携用
 */
// スライドショーで使用している Swiper インスタンス
const mySwiper = ref(null);
// スライドショーを操作した時、その変更内容が mySwiper になぜか伝播されなかったため realIndex を別途用意する。
const swiperRealIndex = ref(null);

/*
 * `<template>` で使用するスライドショーとサムネイル用に算出した props 画像
 */
const computedImages = computed(() =>
  props.images.map((value, index) => ({
    index,
    value,
    classObject: { "thumb-media-active": index === swiperRealIndex.value },
  }))
);

/*
 * スライドショー
 */
const modules = [EffectFade, Navigation];
const onSwiper = (swiper) => {
  mySwiper.value = swiper;
  swiperRealIndex.value = swiper.realIndex;
};
const onSlideChange = (swiper) => {
  swiperRealIndex.value = swiper.realIndex;
};

/*
 * サムネイル
 */
const onClickThumb = (index) => {
  mySwiper.value.slideTo(index);
};
</script>

<style>
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;700&display=swap");
:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #f5695f;
  --color-theme-darken: #f12617;
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
    -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08),
    -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05),
    inset -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1),
    -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}

html {
  font-family: "Spartan", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
    "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
  line-height: 1.8;
  height: 100%;
  word-break: break-word;
  color: #333;
  background-color: var(--color-base);
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 1.6rem;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-moz-selection {
  color: #fff;
  background: var(--color-theme);
}

::selection {
  color: #fff;
  background: var(--color-theme);
}

img {
  border: 0;
  margin: 0;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #333;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.6rem;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10rem;
}

.l-section {
  border-top: 1px solid #eee;
}
.l-section .l-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

[class*="swiper"]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.gallery02 {
  overflow: hidden;
}
.gallery02 .swiper,
.gallery02 .thumb-wrapper {
  max-width: 720px;
  margin: auto;
}
.gallery02 .swiper {
  overflow: visible;
}
.gallery02 .swiper-fade .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}
.gallery02 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.gallery02 .swiper-controller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 62.5%;
}
.gallery02 .swiper-button-prev,
.gallery02 .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
.gallery02 .swiper-button-prev {
  right: calc(100% + 3.2rem);
}
.gallery02 .swiper-button-next {
  left: calc(100% + 3.2rem);
}
.gallery02 .slide {
  display: block;
  overflow: hidden;
}
.gallery02 .slide-media {
  display: block;
  padding-top: 62.5%;
  border-radius: 4px;
}
.gallery02 .slide-media img {
  -o-object-fit: contain;
  object-fit: contain;
}
.gallery02 .slide-title {
  font-weight: bold;
  line-height: 1.6;
  padding: 3.2rem 0;
}
.gallery02 .thumb-wrapper {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.gallery02 .thumb-media {
  padding-top: 100%;
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  border-radius: 4px;
}
.gallery02 .thumb-media img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.gallery02 .thumb-media-active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0.3;
}
.gallery02 .thumb-media-active img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  .l-inner {
    padding: 0 4rem;
  }
  .pc {
    display: none !important;
  }
  .gallery02 .swiper-button-prev::before,
  .gallery02 .swiper-button-next::before {
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: var(--box-shadow-dark);
    box-shadow: var(--box-shadow-dark);
  }
  .gallery02 .swiper-button-prev::after,
  .gallery02 .swiper-button-next::after {
    border-color: #fff;
  }
  .gallery02 .swiper-button-prev {
    right: calc(100% - 3.2rem);
  }
  .gallery02 .swiper-button-next {
    left: calc(100% - 3.2rem);
  }
}

@media only screen and (max-width: 599px) {
  html {
    font-size: 50%;
  }
  .pc-tab {
    display: none !important;
  }
  .gallery02 .thumb-wrapper {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
  .swiper-button-prev::before,
  .swiper-button-next::before {
    -webkit-transition: var(--transition);
    transition: var(--transition);
  }
  .swiper-button-prev:hover::before,
  .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .gallery02 .thumb-media:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  .gallery02 .thumb-media:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@media only screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
</style>

おわりに

スタイルまで整える余裕はありませんでした。。。ですので、今回作成した SFC をそのまま渡し、スタイルは崩れているので直してもらう、という使い方になるのかなと思います。

それとは別に、初めて Swiper を触り、使い方もある程度わかり、学びを得られたので嬉しいです。

以上です。

コメントを残す