Ubuntu 搭建 Gitea

阅读 19

2024-10-11

在这里插入图片描述

直接上代码

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)

0 0 举报