首页 > 代码库 > 关于文字下方线消失的动画
关于文字下方线消失的动画
<style>
.overlay-figure {
position: relative;
display: table;
}
.overlay-figure
.separator {
display: block;
height: 3px;/*线的高度*/
width:100%;/*线的宽度*/
background-color: #000000;
-webkit-transform: scaleX(0) translateZ(0);
-moz-transform: scaleX(0) translateZ(0);
transform: scaleX(0) translateZ(0);
-webkit-transition: -webkit-transform 0.25s ease 0.25s;
-moz-transition: -moz-transform 0.25s ease 0.25s;
transition: transform 0.25s ease 0.25s;
}
.top1 a{
font-family: 微软雅黑;
color:#fff;
font-size:14px;
}
.overlay-figure:hover
.separator {
-webkit-transform: scaleX(1) translateZ(0);
-moz-transform: scaleX(1) translateZ(0);
transform: scaleX(1) translateZ(0);
}
</style>
<meta charset="utf-8"/>
<!--三个按钮的动画开始-->
<div class="overlay-figure" style="display: inline;">
<div class="over_a" style="display: inline;">
<a href="http://www.mamicode.com/#">了解更多</a>
</div>
<!--<div class="over_a" style="display: inline">-->
<!--观看视频-->
<!--</div>-->
<div class="separator" style="display: inline-block;position: absolute;top:22px"></div>
</div>
<!--三个按钮的动画结束-->
关于文字下方线消失的动画
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。