文章数量
36
访客量
4952
访问量
9817

css特效之文字倒影效果

阅读量:257
更新时间:2023-12-18 16:58:04

效果预览:效果预览
源码下载:关注公众号【RMRF】,回复【css16】可获取源码

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>
    body {
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #202020;
      height: 100vh;
    }

    .tip {
      position: relative;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
    }

    .tip::after {
      position: absolute;
      content: "Hello World!";
      transform: rotateX(180deg) skewX(10deg);
      bottom: -50px;
      left: 0px;
      background: linear-gradient(to bottom, transparent 20%, #fff);
      background-clip: text;
      -webkit-background-clip: text;
      -moz-background-clip: text;
      color: transparent;
    }
  </style>
</head>

<body>
  <div class="tip">Hello World!</div>
</body>

</html>