マウスオーバーで線をなぞるボタン
こんにちは。ささめまです。
ボタンの枠が塗りつぶされていくcssをご紹介します。
\ コピペでそのまま使えます /
demo
html
<a href="#" class="button_link">
<p>button</p>
<div class="hover"></div>
<div class="hover_bottom"></div>
</a>
css
.button_link {
width: 280px;
height: 40px;
text-decoration: none;
display: block;
border: solid 2px #eeeeee;
position: relative;
}
.button_link p {
margin: 0 auto;
color: #81d8d0;
text-align: center;
position: absolute;
top: 0;
left: 0;
right: 0;
}
.button_link:hover .hover:before,
.button_link:hover .hover:after {
opacity: 1;
-webkit-animation: openA 0.4s;
animation: openA 0.4s;
animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
animation-direction: normal;
}
.button_link:hover .hover_bottom:before,
.button_link:hover .hover_bottom:after {
opacity: 1;
-webkit-animation: openB 0.4s;
animation: openB 0.4s;
animation-delay: 0.4s;
animation-fill-mode: forwards;
animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
animation-direction: normal;
}
.hover {
width: 100%;
height: 40px;
position: absolute;
top: -2px;
}
.hover:before {
content: "";
width: 0;
height: 0;
border-top: solid 2px #81d8d0;
border-left: solid 2px #81d8d0;
display: block;
opacity: 0;
position: absolute;
right: 138px;
}
.hover:after {
content: "";
width: 0;
height: 0;
border-top: solid 2px #81d8d0;
border-right: solid 2px #81d8d0;
display: block;
opacity: 0;
position: absolute;
left: 138px;
}
.hover_bottom {
width: 100%;
height: 40px;
position: absolute;
bottom: -2px;
}
.hover_bottom:before {
content: "";
width: 0;
height: 40px;
border-bottom: solid 2px #81d8d0;
display: block;
opacity: 0;
position: absolute;
right: 0;
}
.hover_bottom:after {
content: "";
width: 0;
height: 40px;
border-bottom: solid 2px #81d8d0;
display: block;
opacity: 0;
position: absolute;
left: 0;
}
@keyframes openA {
0% {
width: 0;
height: 0;
}
50% {
width: 140px;
height: 0;
}
100% {
width: 140px;
height: 40px;
}
}
@keyframes openB {
0% {
width: 0px;
}
100% {
width: 140px;
}
}
design
私が紹介するボタンにしてはcssが長いですね笑
シンプルな線のボタンですが、一味違うなと思わせるアニメーションです。
私自身がフロントエンドをやっていることもあってか、工夫してるなーと感心したボタンデザインでした。
※実際サイズとか形変えたりしようとするとpositionの調整が必要で、なかなか大変でした!!
でも完成品はとてもかっこいい…!やる価値はあると思います。
ではでは