我们经常会看到各种颜色的灯光,本题我们将实现一个颜色会变化的灯的效果。
开始答题前,需要先打开本题的项目代码文件夹,目录结构如下:
├── effect.gif
├── images
│ ├── greenlight.svg
│ ├── light.svg
│ └── redlight.svg
├── index.html
└── js
└── trafficlights.js
其中:
index.html
?是主页面。images
?是图片文件夹。js/trafficlights.js
?是需要补充的 js 文件。effect.gif?
是最终实现的效果图。注意:打开环境后发现缺少项目代码,请手动键入下述命令进行下载:
cd /home/project
wget https://labfile.oss.aliyuncs.com/courses/9791/04.zip && unzip 04.zip && rm 04.zip
在浏览器中预览?index.html
?页面效果如下:
完成?js/trafficlights.js
?文件中的?red
、green
?和?trafficlights
?函数,达到以下效果:
display
?属性来显示不同颜色的灯的图片。完成后的效果见文件夹下面的 gif 图,图片名称为?effect.gif
(提示:可以通过 VS Code 或者浏览器预览 gif 图片)。
display
?属性来显示不同颜色的灯的图片,以免造成无法判题通过。id
、class
、函数名称、已有样式,以免造成无法判题通过。首先研究代码,html文件中只写了三个id,然后题目要求使用display,那么只能先获取到元素,然后改变style,接着使用setTimeout函数控制时间即可
function red() {
const red = document.querySelector('#redlight');
red.style.display = "inline-block";
const green = document.querySelector('#greenlight');
green.style.display = "none";
const defa = document.querySelector('#defaultlight');
defa.style.display = "none";
}
全部实现代码:
// TODO:完善此函数 显示红色颜色的灯
function red() {
const red = document.querySelector('#redlight');
red.style.display = "inline-block";
const green = document.querySelector('#greenlight');
green.style.display = "none";
const defa = document.querySelector('#defaultlight');
defa.style.display = "none";
}
// TODO:完善此函数 显示绿色颜色的灯
function green() {
const red = document.querySelector('#redlight');
red.style.display = "none";
const green = document.querySelector('#greenlight');
green.style.display = "inline-block";
const defa = document.querySelector('#defaultlight');
defa.style.display = "none";
}
// TODO:完善此函数
function trafficlights() {
setTimeout(()=>{
red()
},3000)
setTimeout(()=>{
green()
},6000)
}
trafficlights();