本项目介绍一个好玩的水杯喝水效果,有8个小杯子和1个大杯子,大杯子中的水量是小杯子水量之和,可以通过点击小杯子来决定大杯子中的水量。
drink-water.pnghtml的主体部分除了文字之外主要分成了上下两部分,上面是一个大杯子,又分成有水的部分和剩余的部分,下方是8个小杯子。
<!DOCTYPE html>
<html lang="en">
<head>
<!-- 字符编码 -->
<meta charset="UTF-8" />
<!-- 虚拟窗口设置,宽度为设备宽度,缩放比例为1.0-->
<meta name="viewport" content="width=device-width, inital-scale=1.0" />
<!-- 引入css -->
<link rel="stylesheet" href="style.css" />
<!-- 标题 -->
<title>Drink Water</title>
</head>
<body>
<!-- 文中题目 -->
<h1>Drink Water</h1>
<!-- 文中文字 -->
<h3>Goal: 2 Liters</h3>
<!-- 上方2L大杯-->
<div class="cup">
<!-- 显示大杯还留有多少空间-->
<div class="remained" id="remained">
<span id="liters"></span>
<small>Remained</small>
</div>
<!-- 显示大杯中水的占比-->
<div class="percentage" id="percentage"></div>
</div>
<p class="text">Select how many glasses of water that you have drank</p>
<!-- 8个250ml小杯-->
<div class="cups">
<div class="cup cup-small">250 ml</div>
<div class="cup cup-small">250 ml</div>
<div class="cup cup-small">250 ml</div>
<div class="cup cup-small">250 ml</div>
<div class="cup cup-small">250 ml</div>
<div class="cup cup-small">250 ml</div>
<div class="cup cup-small">250 ml</div>
<div class="cup cup-small">250 ml</div>
</div>
<script src="script.js"></script>
</body>
</html>
js部分首先包含了对每个小杯子的点击事件。根据当前小杯子是否有水(通过 full
类选择器判断)来决定如何处理,如果当前小杯子没有水,则点击后索引小于等于当前小杯子的都会包含水,如果索引大于当前杯子的杯子有水,则点击后索引大于当前杯子的杯子的水会消失。如果当前杯子是索引最大的有水杯子,则点击后仅将当前杯子的水消失。
初始时刻和小杯子点击事件触发后大杯子都会更新,根据水量决定有水部分的高度。没水时会隐藏显示水量百分比的部分,水满时则会隐藏显示剩余空间的部分。
需要注意的小知识点是可以通过 ${...}
向js字符串中添加变量,字符串中有变量的话,字符串要用反引号括起来,而不是单引号或双引号。
const smallCups = document.querySelectorAll('.cup-small')
const liters = document.getElementById('liters')
const percentage = document.getElementById('percentage')
const remained = document.getElementById('remained')
// 更新大杯
updateBigCup()
// 通过遍历为小杯添加点击事件
smallCups.forEach((cup, idx) => {
cup.addEventListener('click', () => highlightCups(idx))
})
// 点击小杯时触发的事件函数,处理小杯中是否有水
function highlightCups(idx) {
if(idx === 7 && smallCups[idx].classList.contains("full")) {
idx--;
} else if(smallCups[idx].classList.contains('full') &&
!smallCups[idx].nextElementSibling.classList.contains('full')) {
idx--;
}
smallCups.forEach((cup, idx2) => {
if(idx2 <= idx) {
cup.classList.add('full')
} else {
cup.classList.remove('full')
}
})
// 更新大杯
updateBigCup()
}
// 更新大杯的方法
function updateBigCup() {
const fullCups = document.querySelectorAll('.cup-small.full').length
const totalCups = smallCups.length
// 没有水时隐藏显示百分比的部分
if(fullCups === 0) {
percentage.style.visibility = 'hidden'
percentage.style.height = 0
} else { // 有水时根据水数量显示百分比
percentage.style.visibility = 'visible'
percentage.style.height = `${fullCups / totalCups * 330}px`
percentage.innerText = `${fullCups / totalCups * 100}%`
}
// 水满时隐藏剩余部分
if(fullCups === totalCups) {
remained.style.visibility = 'hidden'
remained.style.height = 0
} else { // 水不满时根据水数量显示剩余部分
remained.style.visibility = 'visible'
liters.innerText = `${2 - (250 * fullCups / 1000)}L`
}
}
css部分整体使用了弹性布局,值得我们学习的部分是大杯样式的设置,由于它使用弹性布局且元素按列排布,所以剩余空间(.remained
)和有水部分(.percentage
)上下分布,且由于剩余部分设置了flex: 1
; ,所以它会自动填满除了有水部分的空间。
另外,小杯子的弹性布局,设置了flex-wrap: wrap;
,所以根据宽度会自动分成两行。
/* 导入外部网络上的字体 */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600&display=swap');
:root { /* 根元素选择器 */
--border-color: #144fc6; /* 变量:边界颜色 */
--fill-color: #6ab3f8; /* 变量:填充颜色 */
}
* { /* 通用选择器,对应所有元素 */
box-sizing:border-box; /* 采用 border-box 方式计算元素宽高*/
}
body { /* body部分 */
background-color: #3494e4;
color: #fff;
font-family: 'Montserrat', sans-serif; /* 字体,优先使用导入的'Montserrat',失败使用sans-serif */
display: flex; /* 布局方式采用弹性布局 */
flex-direction: column; /* 弹性元素按列排布,用于display: flex中 */
align-items: center; /* 元素在容器垂直方向居中对齐,用于display: flex中 */
margin-bottom: 40px;
}
h1 { /* 一级标题 */
margin: 10px 0 0;
}
h3 { /* 三级标题 */
font-weight: 400;
margin: 10px 0;
}
.cup { /* cup类 */
background-color: #fff; /* 背景颜色 */
border: 4px solid var(--border-color); /* 边框,颜色使用了变量*/
color: var(--border-color); /* 文本颜色,颜色使用了变量*/
border-radius: 0 0 40px 40px; /* 圆角边框,设置了下方两个,实现杯子的样式 */
height: 330px;
width: 150px;
margin: 30px 0;
display: flex; /* 布局方式采用弹性布局 */
flex-direction: column; /* 弹性元素按列排布,用于display: flex中 */
overflow: hidden; /* 隐藏溢出 */
}
.cup.cup-small { /* 小杯 */
height: 95px;
width: 50px;
border-radius: 0 0 15px 15px; /* 圆角边框 */
background-color: rgba(255, 255, 255, 0.9); /* 背景颜色 */
cursor: pointer; /* 光标样式 */
align-items: center; /* 元素在容器垂直方向居中对齐,用于display: flex中 */
justify-content: center; /* 元素在容器水平方向居中对齐,用于display: flex中 */
text-align: center; /* 文本居中 */
margin: 5px; /* 外边距 */
transition: 0.3s ease; /* 过渡效果 */
}
.cup.cup-small.full { /* 装水小杯 */
background-color: var(--fill-color); /* 背景颜色 */
color: #fff; /* 文本颜色 */
}
.cups {
display: flex; /* 布局方式采用弹性布局 */
flex-wrap: wrap; /* 元素在必要时候可以换行,用于display: flex中 */
align-items: center;
justify-content: center;
width: 280px;
}
.remained {
display: flex; /* 布局方式采用弹性布局 */
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
flex: 1; /* flex设置为1可以获取剩余所有高度或宽度 */
transition: 0.3s ease;
}
.remained span {
font-size: 20px;
font-weight: bold;
}
.remained small {
font-size: 12px;
}
.percentage {
background-color: var(--fill-color);
display: flex; /* 布局方式采用弹性布局 */
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 30px;
height: 0; /* 初始高度为0 */
transition: 0.3s ease; /* 过渡效果 */
}
.text {
text-align: center;
margin: 0 0 5px;
}
drink-water.gif
网友评论