コピペOK!

Webコーディング帳

ふわふわ動くボタン

Button

HTML

            
<div class="btn anime-fuwafuwa">
  <span>Button</span>
</div>          
        

CSS

            
.anime-fuwafuwa {
  animation: fuwafuwa 1.5s linear infinite;
  scale: 1;
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0)
  }
  25% {
    transform: translateY(-5px)
  }
  50% {
    transform: translateY(0)
  }
 75% {
    transform: translateY(5px)
  }
  100% {
    transform: translateY(0)
  }
}
// ボタンのスタイル
.btn {
  background-color: #eb6100;
  width: 240px;
  height: 54px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto;
  box-shadow: 0px 4px 4px rgba($color: #000000, $alpha: .16);
  cursor: pointer;
  color: #fff;
}