文字透明效果(background-clip:text)

文字透明效果(background-clip:text)

今天看到网上有一个这种镂空效果的页面,查了一下网上,才知道时background-clip做成了,今天记录一下

1.效果如图:

文字透明效果(background-clip:text)_第1张图片

2.代码完成:


<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>文字全透明title>
  <style>
    body {
      margin: 0;
      padding: 0;
      background-color: #55efc4;
    }

    h1.power {
      width: 100%;
      /* 没有做适配,直接按照全屏来的  也可以写px值   */
      font-size: 12em;
      font-weight: 900;
      text-align: center;
      color: transparent;
      /* 文字间距 */
      letter-spacing: 20px;
      margin: 0;
      /* 居中h1标签 */
      position: fixed;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      /* 背景图片导入 */
      background: url("https://cdn.pixabay.com/photo/2020/05/21/07/39/banner-5199550__340.jpg") repeat center center;
      /* 背景裁切,值为text时 会有文字的镂空效果(前提是文字透明或者半透明,能直观看出来) */
      -webkit-background-clip: text;
      background-size: 40%;
      /* 动画执行 */
      animation: animate 8s ease 500ms forwards;
    }

    /* 定义关键帧 */
    @keyframes animate {
      from {
        background-size: 50%;
      }

      to {
        background-size: 10%;
      }
    }
  style>
head>

<body>
  <h1 class="power">你渴望力量吗?骚年!h1>
body>

html>

其实主要的就是 -webkit-background-clip: text; 这一句代码。
值为text时,前缀 -webkit- 必须得加上。

Google 火狐 Edge 可以正常运行,但是IE不行。

你可能感兴趣的:(CSS,css)