css-doodle实现炫酷数字动画效果代码

代码语言:html

所属分类:动画

代码描述:css-doodle实现炫酷数字动画效果代码

代码标签: css-doodle 炫酷 数字 动画

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


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

<head>

  <meta charset="UTF-8">
  

  
  
<style>
@import url("https://fonts.googleapis.com/css2?family=Fugaz+One&family=Monoton&family=Righteous&display=swap");
html, body {
  padding: 0;
  height: 100%;
  display: grid;
  place-content: center;
  background: #0A0A27;
}

div {
  position: fixed;
  font-family: "Monoton", "Fugaz One", cursive;
  inset: 0;
  background: #000;
  color: #fff;
  z-index: 1;
  text-align: center;
  line-height: 100vh;
  font-size: 160px;
  mix-blend-mode: color-burn;
  le.........完整代码请登录后点击上方下载按钮下载查看

网友评论0