1 Star 0 Fork 0

hcy/test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
开关灯.html 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
hcy 提交于 2021-11-25 14:05 . fisrt commit
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
* {
padding: 0;
margin: 0;
}
body {
height: 100%;
background: url(./开关灯/0.jpg) no-repeat;
}
#box {
width: 100px;
height: 50px;
position: fixed;
left: 50px;
top: 50px;
background: grey;
color: #fff;
text-align: center;
font: 20px/50px "";
border: 1px solid deeppink;
}
</style>
<body>
<button id="box">
</button>
</body>
</html>
<script>
var btn = document.querySelector('#box')
var body = document.querySelector('body')
btn.innerText = '开灯'
btn.onclick = function () {
console.log('1');
if (btn.innerText === '开灯') {
body.style.background = 'url(./开关灯/1.jpg) no-repeat'
btn.innerText = '关灯'
console.log('判断开灯');
}else
if (btn.innerText === '关灯') {
body.style.background = 'url(./开关灯/0.jpg) no-repeat'
btn.innerText = '开灯'
console.log('判断关灯');
}
}
</script>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hhuchenyang/test.git
[email protected]:hhuchenyang/test.git
hhuchenyang
test
test
master

搜索帮助