继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

css a标签追加移入动画

行走在孤岭中
关注TA
已关注
手记 14
粉丝 5
获赞 38

a标签代码

<a target="_blank" href="#" class="bottom-href">点击咨询课程</a> 

图片描述

.bottom-href {
    width: 299px;
    height: 64px;
    background-color: #fde17d;
    border-radius: 32px;
    font-family: SourceHanSansSC-Bold;
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 64px;
    letter-spacing: 0px;
    color: #382f13;
    overflow: hidden;
    position: relative;
    display: block;
    text-align: center;
}
.bottom-href:after {
    content: "";
    position: absolute;
    background: none repeat scroll 0 0 #ff7233;
    width: 0%;
    height: 0%;
    left: 50%;
    top: 50%;
    z-index: -1;
    border-radius: 50%;
    opacity: .5;
    transform: translateX(-50%) translateY(-50%);
    transition: all .3s ease;
}
.bottom-href:link, .bottom-href:visited {
    z-index:3;
}
.bottom-href:hover:after {
    height: 450%;
    width: 110%;
    opacity: 1;
}
打开App,阅读手记
1人推荐
发表评论
随时随地看视频慕课网APP