react+gsap实现大气简洁数字时钟显示当前时间代码

代码语言:html

所属分类:其他

代码描述:react+gsap实现大气简洁数字时钟显示当前时间代码

代码标签: reac gsap 大气 简洁 数字 时钟 显示 当前 时间 代码

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

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

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

  
  
<style>
:root {
  --bg: #EAE3B7;
  --grad: #0F0326;
}
body {
 background-color: var(--bg);
	margin: 0;
  padding: 0;
  height: 100vh;
}
body,
html {
 height: 100%;
 width: 100%;
 margin: 0;
 padding: 0;
}
.App {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-height: 100vh;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  
  width: 50%;
  min-height: 100vh;
}
.mainSVG { 
  min-height: 100vh;
}

.dividerSVG {
   min-height: 100vh;
}
</style>

  
  
</head>

<body translate="no">
  <div id="root"></div>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/gsap.3.12.5.js"></script>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/MorphSVGPlugin3.min.js"></script>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/babel.7.18.13.js"></script>
      <script  type="te.........完整代码请登录后点击上方下载按钮下载查看

网友评论0