初心者でも実装しやすいボタンホバーアニメーション。
ボタンをホバーすると文字間(letter-spacing)が開くシンプルな動き。
フォームの送信ボタンなどにおススメ。
HTML
<a href="#" class="ugkBtnLsp">CONTCT</a>
CSS
.ugkBtnLsp {
text-decoration: none;
color: #fff;
background-color: #767676;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
width: 200px;
max-width: 100%;
height: 60px;
border-radius: 100px;
transition: all ease .3s;
}
.ugkBtnLsp:hover {
letter-spacing: 0.15em;
}

コメント