0
点赞
收藏
分享

微信扫一扫

Ubuntu 搭建 Gitea

ZGtheGreat 2024-10-11 阅读 17

在这里插入图片描述

直接上代码

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;
    }
举报

相关推荐

0 条评论