gsap+css实现容器水盛满倒计时动画效果代码

代码语言:html

所属分类:动画

代码描述:gsap+css实现容器水盛满倒计时动画效果代码

代码标签: gsap css 容器 盛满 倒计时 动画

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

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

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

  <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,400i,700">
  
  
  
<style>
body {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 90vh;
	background-color: hsl(35, 50%, 80%);
	font-family: Lato, sans-serif;
	font-weight: 700;
	font-style: normal;
}

text {
	text-anchor: middle;
	dominant-baseline: middle;
	font-size: 16px;
	fill: rgba(0, 0, 0, 0.5);
}

.inputs {
	text-align: center;
}

.slider {
	margin: 20px 0px;
}

.slider {
	-webkit-appearance: none;
	width: 300px;
	height: 3px;
	border-radius: 1px;
	background: #59423f;
	outline: none;
	opacity: 0.7;
	-webkit-trans.........完整代码请登录后点击上方下载按钮下载查看

网友评论0