自学内容网 自学内容网

关于css文字下划线动画实现

在这里插入图片描述

直接上代码

html部分

 <div>
        <span class="txt">
            文字下滑动画
        </span>
    </div>

css部分

    .txt {
        background: linear-gradient(270deg, #4f95fd 0%, #1059df 100%) no-repeat left bottom;
        background-size: 0px 2px;
        background-position-x: right;
        transition: background-size 600ms;
    }
    
    .txt:hover {
        cursor: pointer;
        background-position-x: left;
        background-size: 100% 2px;
    }

原文地址:https://blog.csdn.net/weixin_57933935/article/details/142827260

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!