🍤

フローティングバナーの作り方

2024/09/21に公開

サイトの下部に、追従してくるバナーを見たことはありませんか。
フローティングバナーなどと呼ばれているこの要素は、とても少ない JavaScript で実装できます。

コード

HTML

close-buttonの中にあるspanで×印を作っています。

<div class="l-container">
  <div class="floating-banner">
    <div class="floating-banner__inner">
      <img class="ebi" src="./img/ebi.png" alt="" width="400" height="396" />
      <a href="#" class="button">購入はこちら</a>
    </div>
    <button class="close-button">
      <span></span>
      <span></span>
    </button>
  </div>
</div>

CSS

× ボタンが押されたら、フローティングバナーにcloseクラスを追加して要素を画面の右端に収納し見えなくしています。

body {
  background-color: #f0f0f0;
}

.l-container {
  max-width: 1200px;
  margin: 0 auto;
}

.button {
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  padding: 0.5em 0;
  width: 100%;
  display: block;
  border-radius: 100vw;
  background-color: orange;
  cursor: pointer;
}

.floating-banner {
  position: fixed;
  bottom: 5%;
  right: 0;
  padding: 10px;
  background-color: #ffffff;
  border-radius: 10px 0 0 10px;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
}
.floating-banner.close {
  transform: translateX(250px);
  transition: all 500ms 0s ease;
}
.floating-banner .close-button {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background-color: skyblue;
  border-radius: 50%;
  transform: translate(-10px, -10px);
}
.floating-banner .close-button span {
  position: relative;
}
.floating-banner .close-button span:first-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 14px;
  height: 2px;
  background-color: #ffffff;
}
.floating-banner .close-button span:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 14px;
  height: 2px;
  background-color: #ffffff;
}

.ebi {
  width: 180px;
  font-size: clamp(100pxpx, 12.5vw, 180px);
  height: auto;
  display: block;
}

.floating-banner__inner {
  text-align: center;
}

JavaScript

// 閉じるボタン
const closeButton = document.querySelector(".close-button");
// フローティングコンテンツ
const floatingContents = document.querySelector(".floating-banner");

closeButton.addEventListener("click", () => {
  floatingContents.classList.add("close");
});

まとめ

JavaScriptでクラスを付与する方法はわかりやすいし使いやすいし、つい多用してしまいます。
次回はもう少し難しいJavaScriptの使い方に挑戦してみます!

Discussion