css实现文字内遮罩液体波动动画效果代码

代码语言:html

所属分类:动画

代码描述:css实现文字内遮罩液体波动动画效果代码

代码标签: css 文字 遮罩 液体 波动 动画

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  

  
  
<style>
body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-content: center;
  background-color: #000;
  font-family: system-ui, sans-serif;
}

.text {
  font-weight: 900;
  font-size: 20vw;
  color: #1f202000;
  position: relative;
  background-clip: text;
  overflow: clip;
  background-color: #fefcef;
}
.text:before, .text:after {
  content: "";
  position: absolute;
  background-color: #3cf5;
  width: 180%.........完整代码请登录后点击上方下载按钮下载查看

网友评论0