Parts

Parts

画像ギャラリーのパーツ 4

「input」のnameは設置するギャラリーごとに名前を付ける。
「label」のfor名と「input」のid名は項目ごとにかぶらない名前を付ける。
ulタグのラベルはそれぞれ「前に戻る」、「次に進む」のボタン。
ずらしてラベルの名前をつける。
※自動で表示を切り替えるにはjavascriptが必要。


<div class="imageGalleryBox--type04 --autoImageGallery">
  <input type="radio" id="imageGallery--type04__label001" name="imageGallery--type04__input" checked/>
  <div class="mainImage">
    <img src="メイン画像の一枚目の画像パス" alt="メイン画像01"/>
    <ul>
      <li><label for="imageGallery--type04__label005"></label></li>
      <li><label for="imageGallery--type04__label002"></label></li>
    </ul>
  <!-- /.mainImage --></div>

  <input type="radio" id="imageGallery--type04__label002" name="imageGallery--type04__input"/>
  <div class="mainImage">
    <img src="メイン画像の二枚目の画像パス" alt="メイン画像02"/>
    <ul>
      <li><label for="imageGallery--type04__label001"></label></li>
      <li><label for="imageGallery--type04__label003"></label></li>
    </ul>
  <!-- /.mainImage --></div>

  <input type="radio" id="imageGallery--type04__label003" name="imageGallery--type04__input"/>
  <div class="mainImage">
    <img src="メイン画像の三枚目の画像パス" alt="メイン画像03"/>
    <ul>
      <li><label for="imageGallery--type04__label002"></label></li>
      <li><label for="imageGallery--type04__label004"></label></li>
    </ul>
  <!-- /.mainImage --></div>

  <input type="radio" id="imageGallery--type04__label004" name="imageGallery--type04__input"/>
  <div class="mainImage">
    <img src="メイン画像の四枚目の画像パス" alt="メイン画像04"/>
    <ul>
      <li><label for="imageGallery--type04__label003"></label></li>
      <li><label for="imageGallery--type04__label005"></label></li>
    </ul>              
  <!-- /.mainImage --></div>

  <input type="radio" id="imageGallery--type04__label005" name="imageGallery--type04__input"/>
  <div class="mainImage">
    <img src="メイン画像の五枚目の画像パス" alt="メイン画像05"/>
    <ul>
      <li><label for="imageGallery--type04__label004"></label></li>
      <li><label for="imageGallery--type04__label001"></label></li>
    </ul>
  <!-- /.mainImage --></div>

  <div class="imagePagination">
    <label for="imageGallery--type04__label001"></label>
    <label for="imageGallery--type04__label002"></label>
    <label for="imageGallery--type04__label003"></label>
    <label for="imageGallery--type04__label004"></label>
    <label for="imageGallery--type04__label005"></label>
  <!-- /.imagePagination --></div>
<!-- /.imageGalleryBox --></div>
                

.imageGalleryBox--type04 {
  width: 100%;
  padding-top: 61.74%; /* 画像の比率 1.618:1 */
  overflow: hidden;
  position: relative;
  display: block;
  background: #ddd;
  .mainImage {
    height: 100%;
    position: absolute;
    overflow-y: auto;
    opacity: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    > a {
      width: 100%;
      height: 100%;
      display: block;
    }
    > img,
    > a img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    > ul {
      display: none;
      height: 2em;
      width: 4.5em;
      list-style: none;
      padding-left: 0;
      justify-content: space-between;
      position: absolute;
      bottom: 1em;
      right: 1em;
      font-size: 1.4em;
      li {
        height: 2em;
        width: 2em;
        display: block;
      }
      > li:first-child label {
        transform: scale(-1, 1);
      }
      label {
        height: 2em;
        width: 2em;
        display: block;
        cursor: pointer;
        opacity: 0.5;
        outline: 0;
        z-index: 1;
        background: rgba(0, 0, 0, 0.8);
        border-radius: 0.3em;
        position: relative;
        &::before {
          content: "";
          width: 0.6em;
          height: 0.6em;
          border-top: #fff solid 0.2em;
          border-right: #fff solid 0.2em;
          display: block;
          position: absolute;
          top: 50%;
          left: 50%;
          margin-top: -0.3em;
          margin-left: -0.3em;
          transform: rotate(45deg);
        }
        &:hover {
          opacity: 0.6;
        }
      }
    }
  }
  input[type="radio"] {
    display: none;
  }
  .imagePagination {
    position: absolute;
    bottom: 1em;
    width: 50%;
    text-align: left;
    padding-left: 1.5em;
    label {
      height: 1em;
      width: 1em;
      background-color: #000;
      border-radius: 100%;
      display: inline-block;
      z-index: 2;
      cursor: pointer;
      opacity: 0.35;
      margin: 0 0.25em;
      &:hover {
        opacity: 0.75;
      }
    }
  }
  input:nth-of-type(1):checked + .mainImage,
  input:nth-of-type(2):checked + .mainImage,
  input:nth-of-type(3):checked + .mainImage,
  input:nth-of-type(4):checked + .mainImage,
  input:nth-of-type(5):checked + .mainImage {
    transition:
      opacity 0.6s ease-in-out,
      transform 0.6s;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
    transform: scale(1);
    ul {
      display: flex;
      opacity: 1;
    }
  }
  input:nth-of-type(1):checked ~ .imagePagination label:nth-of-type(1),
  input:nth-of-type(2):checked ~ .imagePagination label:nth-of-type(2),
  input:nth-of-type(3):checked ~ .imagePagination label:nth-of-type(3),
  input:nth-of-type(4):checked ~ .imagePagination label:nth-of-type(4),
  input:nth-of-type(5):checked ~ .imagePagination label:nth-of-type(5) {
    opacity: 1;
  }
}
              

.imageGalleryBox--type04 {
  width: 100%;
  padding-top: 61.74%;
  /* 画像の比率 1.618:1 */
  overflow: hidden;
  position: relative;
  display: block;
  background: #DDD;
  .mainImage {
    height: 100%;
    position: absolute;
    overflow-y: auto;
    opacity: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    >img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    >a {
      width: 100%;
      height: 100%;
      display: block;
      >img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
    >ul {
      display: none;
      height: 2em;
      width: 4.5em;
      list-style: none;
      padding-left: 0;
      justify-content: space-between;
      position: absolute;
      bottom: 1em;
      right: 1em;
      font-size: 1.4em;
      li {
        height: 2em;
        width: 2em;
        display: block;
      }
      label {
        height: 2em;
        width: 2em;
        display: block;
        cursor: pointer;
        opacity: 0.5;
        outline: 0;
        z-index: 1;
        background: rgba(0, 0, 0, .8);
        border-radius: 0.3em;
        position: relative;
        &::before {
          content: "";
          width: 0.6em;
          height: 0.6em;
          border-top: #fff solid 0.2em;
          border-right: #fff solid 0.2em;
          display: block;
          position: absolute;
          top: 50%;
          left: 50%;
          margin-top: -0.3em;
          margin-left: -0.3em;
          transform: rotate(45deg);
        }
        &:hover {
          opacity: 0.6;
        }
      }
      >li:first-child label {
        transform: scale(-1, 1);
      }
      >li:last-child label {}
    }
  }
  input[type="radio"] {
    display: none;
  }
  .imagePagination {
    position: absolute;
    bottom: 1em;
    width: 50%;
    text-align: left;
    padding-left: 1.5em;
    label {
      height: 1em;
      width: 1em;
      background-color: #000;
      border-radius: 100%;
      display: inline-block;
      z-index: 2;
      cursor: pointer;
      opacity: 0.35;
      margin: 0 0.25em;
      &:hover {
        opacity: 0.75;
      }
    }
  }
  // 5個の画像まで設定
  @for $value from 1 through 5 {
    input[type="radio"] {
      &:nth-of-type(#{$value}):checked {
        +.mainImage {
          transition: opacity 0.6s ease-in-out, transform 0.6s;
          top: 0;
          left: 0;
          right: 0;
          opacity: 1;
          transform: scale(1);
          ul {
            display: flex;
            opacity: 1;
          }
        }
        ~.imagePagination label:nth-of-type(#{$value}) {
          opacity: 1;
        }
      }
    }
  }
}
              

ギャラリー内の画像を自動で切り替えるJavascript

ギャラリー内のinputを取得して、setIntervalで切り替えています。
ギャラリーを囲う要素に「--autoImageGallery」というクラスをつけると動作します。
ホバーすると、一時停止します。


function startAutoImageGallery(gallery) {
	// ラジオボタンの要素と数を取得
	const radios = gallery.querySelectorAll('input[type="radio"]');
	const length = radios.length;
	if (!length) return;

	let intervalId = null;

	function nextSlide() {
		const currentIndex = [...radios].findIndex(radio => radio.checked);
		const nextIndex = (currentIndex + 1) % length;
		radios[nextIndex].checked = true;
	}
	function start() {
		if (!intervalId) {
			//5000ミリ秒間隔で切り替える
			intervalId = setInterval(nextSlide, 5000);
		}
	}
	function stop() {
		clearInterval(intervalId);
		intervalId = null;
	}
	// 初回スタート
	start();
	// ホバーで停止
	gallery.addEventListener('mouseenter', stop);
	gallery.addEventListener('mouseleave', start);
}

window.addEventListener('load', function () {
	// 自動切り替えをするギャラリー要素を取得
	const galleries = document.querySelectorAll('.--autoImageGallery');
	galleries.forEach(gallery => {
		startAutoImageGallery(gallery);
	});
});
                
ページ上部に戻るスプーン