turtleman实现可调参数网格线条效果代码

代码语言:html

所属分类:其他

代码描述:turtleman实现可调参数网格线条效果代码

代码标签: turtleman 参数 网格 线条

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

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

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


  
  
<style>
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

html {
  background: white;
}
body {
  background: white;
  margin: 0;
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}
svg {
  max-height: 100vh;
  max-width: 100vw;
  height: auto;
  width: auto;
  /*   border: 1px solid silver; */
}

#container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
h1 {
  font-family: Rubik;
  font-size: 100px;
  font-weight: 800;
  line-height: 1em;
  position: absolute;
  color: #fff;
}

.turtleman-container {
  background: #FFF;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: 0px 0px 20px rgba(0,0,0,.05);
  font-family: Rubik;
  positi.........完整代码请登录后点击上方下载按钮下载查看

网友评论0