Skip to content
文字反光效果
html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .hyp2div{
            background-color: #f1e5f9;
            border-radius: 50%;
            width: 100px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hyp2{
            font-weight: bold;
            font-size: 20px;
            /* 微信小程序需要添加-webkit-前缀才生效 */
            /* -webkit-background-image: linear-gradient(to right, #9B499A, #EC87EC, #9B499A); */
            background-image: linear-gradient(to right, #9B499A, #EC87EC, #9B499A);
            color: transparent;
            background-clip: text;
        }
    </style>
</head>
<body>
    <div class="hyp2div">
        <div class="hyp2">你好</div>
    </div>
</body>
</html>