美文网首页CSS3
2018-05-17 利用CSS实现 按钮hover时文本左移效

2018-05-17 利用CSS实现 按钮hover时文本左移效

作者: 啾咪啾咪啾 | 来源:发表于2018-05-17 15:59 被阅读0次

<button class="button"><span>Hover</span></button>
<style>
.button{
width: 200px;
height: 50px;
line-height: 50px;
border-radius: 5px;
background: #f4511e;
color: #fff;
border:0;
outline: none;
display: inline-block;
position: relative;
transition: .5s;
font-size: 18px;
}
.button span{
cursor: pointer;
position: relative;
transition: .5s;
}
.button span:after{
content: ">>";
position: absolute;
opacity: 0;
right: -20px;
transition: .5s;
}
.button:hover span{
padding-right: 30px;
}
.button:hover span:after{
opacity: 1;
right: 0;
}
</style>

相关文章

网友评论

    本文标题:2018-05-17 利用CSS实现 按钮hover时文本左移效

    本文链接:https://www.haomeiwen.com/subject/lqnbdftx.html