Web制作 × AI

【CSS】ボタンのボーダー上でラインがボーダーに沿ってループアニメーションをさせる方法

コーディングテクニックの実装内容

今回はWeb制作におけるCSSアニメーションの中でボーダーアニメーションに関する内容です。ボタンのボーダー上でラインがボーダーに沿ってループアニメーションをさせる方法を紹介します。@keyframesを使用したCSSアニメーションになります。

コーディングテクニックの使いどころ

ボタンを目立たせることできるのでCTRを上げるのに効果的です。

実装難易度・必要なスキル

コーディングとjQueryの基礎的な知識があれば実務未経験のコーダー、マークアップエンジニア、Webデザイナー、エンジニア、副業の初心者など誰でも実装可能です。

実装所要時間は10分程度

CSS,JavaScriptの記述内容

.block {
  margin: 70px auto 0;
}

.button {
  position: relative;
  display: block;
  width: 300px;
  height: 50px;
  overflow: hidden;
  line-height: 50px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.button:before,
.button:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  z-index: 2;
}

.button:before {
  left: 0px;
  top: 0px;
  animation: move-top 2.5s cubic-bezier(0.6, 0.06, 0.68, 0.2) 0s infinite;
}

.button:after {
  right: 0px;
  bottom: 0px;
  animation: move-bottom 2.5s cubic-bezier(0.6, 0.06, 0.68, 0.2) 0s infinite;
}

.inner {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: background .15s linear;
}

.inner:before,
.inner:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #000;
  position: absolute;
  z-index: 2;
}

.inner:before {
  left: 0px;
  top: 0px;
  animation: move-left 2.5s cubic-bezier(0.6, 0.06, 0.68, 0.2) 0s infinite;
}
.inner:after {
  right: 0px;
  bottom: 0px;
  animation: move-right 2.5s cubic-bezier(0.6, 0.06, 0.68, 0.2) 0s infinite;
}

.border {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  box-sizing: border-box;
  opacity: .4;
}

@keyframes move-top {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  50% {
    transform: translate3d(0%, 0, 0);
  }
  75% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes move-bottom {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  50% {
    transform: translate3d(0%, 0, 0);
  }
  75% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes move-left {
  0% {
    transform: translate3d(0%, 100%, 0);
  }
  50% {
    transform: translate3d(0%, 100%, 0);
  }
  100% {
    transform: translate3d(0%, -100%, 0);
  }
}

@keyframes move-right {
  0% {
    transform: translate3d(0%, -100%, 0);
  }
  50% {
    transform: translate3d(0%, -100%, 0);
  }
  100% {
    transform: translate3d(0%, 100%, 0);
  }
}

@media screen and (max-width:640px){
  a {
    width: 80%;
  }
}

実装のポイント

現在制作中

PR
[商品価格に関しましては、リンクが作成された時点と現時点で情報が変更されている場合がございます。]

ChatGPT 120%活用術 [ ChatGPTビジネス研究会 ]
価格:1,390円(税込、送料無料) (2023/5/23時点)


この記事を書いた人(著者情報)

片山

カタチップ編集長。昭和生まれの30代でWeb業界歴は10年以上。現在はカタチップを運用しつつ事業会社でWEBメディアサイトのWebディレクター兼マークアップエンジニアを担当。最近はSNSの運用にも業務範囲を拡大中です。

著者画像

スポンサーリンク