【前端设计】文字聚光灯

欢迎来到前端设计专栏,本专栏收藏了一些好看且实用的前端作品,使用简单的html、css语法打造创意有趣的作品,为网站加入更多高级创意的元素。

案例

文字聚光灯效果可以用于网站标题
【前端设计】文字聚光灯_第1张图片

html

DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Documenttitle>
  <link rel="stylesheet" href="聚光灯.css">
head>
<body>
 <div class="icon">
    <div class="text">
    <h2>星域VRh2>
  div>
 div>
body>
html>

css


.icon .text {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon  .text h2 {
  font-size: 6rem;
  color: #666;
  position: relative;
  color: #333;
}
.icon  .text h2::after {
  content: "星域VR";
  position: absolute;
  top: 0;
  left: 0;
  color: teal;
  clip-path: ellipse(100px 100px at 0% center);
  animation: animateText 5s infinite;
  background-image: linear-gradient(60deg, #00d0ff, #4dff03, #ff0058, #ffbc00, #ff0058);
  -webkit-background-clip: text;
  color: transparent;
}
@keyframes animateText {
  0%,
  100% {
    clip-path: ellipse(100px 100px at 0 center);
  }
  50% {
    clip-path: ellipse(100px 100px at 100% center);
  }
}

下期预告

加载动画

你可能感兴趣的:(css案例,前端)