threejs-toys实现彩色曲线动画背景效果代码

代码语言:html

所属分类:背景

代码描述:threejs-toys实现彩色曲线动画背景效果代码

代码标签: threejs toys 彩色 曲线 动画 背景

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

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

<head>

  <meta charset="UTF-8">

  
  <link rel='stylesheet' href='https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&amp;display=swap'>
  
<style>
body, html, #app {
  margin: 0;
  width: 100%;
  height: 100%;
}

#app {
  overflow: hidden;
}

#app h1 {
  --fontSize: 70px;
  --lineHeight: 90px;
  width: auto;
  height: calc(2 * var(--lineHeight));
  line-height: var(--lineHeight);
  margin: calc(50vh - var(--lineHeight)) auto 0;
  text-align: center;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fontSize);
  text-shadow: 0 0 5px #ffffff, 0 0 20px #000, 0 0 30px #000;
  text-transform: uppercase;
}

#app canvas {
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
}
</style>


</head>

<body >
  <div id="app">
  <div id="hero">
    <h1>Noisy Lines.........完整代码请登录后点击上方下载按钮下载查看

网友评论0