icon

【CSSのhoverアクション】cubic-bezierでなめらかでおしゃれなhoverアクション

cubic-bezierでなめらかでおしゃれなhoverアクション
投稿日時

更新日時

cubic-bezierとは

CSSのアニメーションのイージングを細かく数値で設定できるプロパティーになります。X軸、Y軸を使用しイージングのスピードを設定できます。

まず、イージングについてまとめてみました。

cubic-bezierを直感的に設定できるサイト

直感的にcubic-bezierを設定できるサイト↓

cubic-bezier.com

cubic-bezierを使用したhoverアクション例

簡単に制作してあるだけなので、アレンジすることをおすすめします!

背景が左から右へスライドするhoverアクション

HTML

/**html**/

<div class="div">
<p class="btn"><a>button</a></p>
</div>

CSS

body {
 background-color: #ececec;
}

.div{
  position: relative;
  background-color: #ececec;
  width: 100%;
  height: 100vh;
}

.btn {
  background-color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 22px;
  overflow: hidden;
}

.btn a {
  font-size: 16px;
  display: inline-block;
  padding: 15px 70px;
  letter-spacing: 1.1px;
  position: relative;
  transition: transform 0.3s cubic-bezier(.16,.5,.43,1);
  border-radius: 22px;
}

.btn a:hover {
  color: #fff;
  transition: color 0.1s cubic-bezier(.16,.5,.43,1);
}

.btn a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  transition: transform 0.3s cubic-bezier(.16,.5,.43,1);
}

.btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 22px;
  background-image: linear-gradient(to right, #a5efff 0%, #00d0ff 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  z-index: -1;
  transition: transform 0.3s cubic-bezier(.16,.5,.43,1);
}

画像が小さくなって近づいてくるhoverアクション


HTML

/**html**/
<div class="img__box">
  <div class="img__box__02">
  <a>
    <img src="https://images.unsplash.com/photo-1573140247632-f8fd74997d5c?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=3270&q=80">
   </a>
  </div>
 </div>

CSS

/**css**/

.img__box {
  width: 40%;
  margin: 60px auto;
  overflow: hidden;
  transition: transform .6s cubic-bezier(.16,.5,.43,1);
}

.img__box:hover {
  transform: scale(.95);
  transition: transform .6s cubic-bezier(.16,.5,.43,1);
}

.img__box__02 {
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(.16,.5,.43,1);
}

.img__box__02:hover {
  transform: scale(1.1);
  transition: transform .6s cubic-bezier(.16,.5,.43,1);
}

.img__box a {
  display: block; 
}

.img__box img {
  width: 100%;
  height: auto;
}

ニューフォフィズムボタンが凹むようなhoverアクション


HTML

/**html**/

<div class="btn">
  <a>neuphophism_buttton</a>
</div>

CSS

/**css**/

body {
  background-color: #f2f2f2;
}

.btn {
  width: 300px;
  margin: 20% auto;
  display: block;
  text-align: center;
  border-radius: 30px;
}

.btn a {
  display: block;
  background-color:#f2f2f2;
  padding: 45px 60px;
  box-shadow: 8px 8px 20px rgb(112 112 112 / 20%), -8px -8px 20px #fff;
  border-radius: 30px;
  transition: .6s cubic-bezier(.16,.5,.43,1);
}

.btn a:hover {
  box-shadow: 8px 8px 20px rgb(160 160 160 / 20%), -8px -8px 20px #fff, inset 4px 4px 10px rgb(160 160 160 / 20%), inset -4px -4px 10px #fff;
  transition: .6s cubic-bezier(.16,.5,.43,1);
}

背景が滑らかに画像になるhoverアクション


HTML

/**html**/

<ul>
  <li>
    <a>
      <div>
        <h2>BUTTON</h2>
      </div>
    </a>
  </li>
</ul>

CSS

/**css**/

ul li {
  width: 50%;
  min-width: 50%;
  margin: 10% auto;
  text-align: center;
  border: 1px solid #0000003b;
  position: relative;
  height: 300px;
}

ul li a {
  display: block;
  line-height: 300px;
}

ul li a div {
  width: 100%;
  height: 100%;
  position: relative;
}

ul li a div::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1502982720700-bfff97f2ecac?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=3270&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity .6s cubic-bezier(.16,.87,.43,1);
}

ul li a:hover div::before {
  opacity: 1;
  transition: opacity .6s cubic-bezier(.16,.87,.43,1);
}

ul li a div h2 {
  font-size: 18px;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
  transition: color .4s cubic-bezier(.16,.87,.43,1);
}

ul li a:hover h2 {
  color: #fff;
  transition: color .4s cubic-bezier(.16,.87,.43,1);
}