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

css特效之文字发光效果

阅读量:318
更新时间:2023-12-18 16:58:05

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

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>

CSS

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #202020;
}

.tip {
  padding: 1em 1em;
  font-size: 15px;
  font-weight: bold;
  border-radius: 1em;
  position: relative;
  transition: all 0.3s;
  font-size: 30px;
  color: #fff;
  text-shadow: 0 0 .5em #fff;
}

.tip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  filter: blur(2em);
  opacity: .7;
  transform: perspective(1.5em) rotateX(35deg) scale(1, 0.6);
}