【发布时间】:2018-11-01 01:24:01
【问题描述】:
我正在尝试创建一个按钮悬停动画,其中边框线是动画的。有谁知道是否可以用 css 为圆角设置动画,还是我需要创建一个 svg 动画? 请参阅下面的代码:
请参阅 Anton Lipovskoy (@lipovskoy) 在 CodePen 上的 Pen Button Border Hover Effect。@import url(https://fonts.googleapis.com/css?family=PT+Sans);
*, *:after, *:before {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body{
font-family: 'PT Sans', sans-serif;
display: table;
width: 100%;
background: #004b60;
}
.container{
display: table-cell;
vertical-align: middle;
text-align: center;
height: 100vh;
}
button{
display: inline-block;
position: relative;
background: none;
border: none;
color: #fff;
font-size: 16px;
cursor: pointer;
margin: 10px 20px;
background: rgba(0, 210, 195, 1);
border-radius: 0.175rem;
-webkit-transition: all .5s ease-out;
-moz-transition: all .5s ease-out;
-o-transition: all .5s ease-out;
transition: all .5s ease-out;
}
span{
display: block;
padding: 15px 20px;
}
button::before, button::after{
content:"";
width: 0;
height: 1px;
position: absolute;
background: rgba(0, 210, 195, 1);
border-radius: 0.175rem;
transition: all 0.2s ease-out;
}
span::before, span::after{
content:"";
width:1px;
height:0;
position: absolute;
background: rgba(0, 210, 195, 1);
border-radius: 0.175rem;
transition: all 0.2s ease-out;
}
button:hover::before, button:hover::after{
width: 100%;
}
button:hover{
background: rgba(0, 210, 195, 0.1);
color:rgba(0, 210, 195, 1);
}
button:hover span::before, button:hover span::after{
height: 100%;
}
/*----- button 4 -----*/
.btn-4::after{
right:0;
bottom: 0;
transition-duration: 0.4s;
}
.btn-4 span::after{
right:0;
bottom: 0;
transition-duration: 0.2s;
}
.btn-4::before{
left: 0;
top: 0;
transition-duration: 0.4s;
}
.btn-4 span::before{
left: 0;
top: 0;
transition-duration: 0.2s;
}
<div class="container">
<button class="btn-4"><span>Hover Me</span></button>
</div>
【问题讨论】:
-
过渡而不是全部尝试border-radius。
-
边框 lengths 不受 CSS 影响...只有宽度。 SVG 可能是最有效的方法。我就是你要问的?
-
感谢您提供的信息。那么我将不得不做一个 svg 动画。