Skip to content

Commit

Permalink
Merge pull request #8 from KaWinggg/patch-7
Browse files Browse the repository at this point in the history
Update index.html
  • Loading branch information
Faucet7 authored Nov 16, 2023
2 parents dc3ddc4 + 925e1d7 commit 0515c98
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,25 @@ <h4 style="color: green;">[已解决] 完美 而且真的写了随机数 </h4>
<h3>创建js文件并给按钮添加点击效果 要求点击后 随机数字加一 ----胡昱之 23.11.15</h3>
<h4 style="color: green;">[已解决] 奈斯 相当不错 </h4>

<h3>在js中给按钮添加点击效果 要求点击后 随机数字改变颜色 ---- 胡昱之、彭欣玥23.11.16</h3>

<h3>在js中给按钮添加点击效果 要求点击后 随机数字改变颜色 ----陈嘉颖 23.11.15</h3>
<script>
const colorButton=document.getElementById('button2');
function changeColor(){
const randomColor=getRandomColor();
colorButton.style.backgroundColor=randomColor;
}
colorButton.addEventListener('click',changeColor);
funcion getRandomColor(){
const letters='0123456789ABCDEF';
let color='#';
for(let i =0;i<6;i++){
color += letters[Math.floor(Math.random()*16)];
}
return color;
}
</script>


<h3>在js中给开关添加点击效果 要求点击后 随机数字切换正负 ----xxx 23.11.xx</h3>
<h3 id="hyperlink">将这个需求变为一个超链接 要求这个链接可以在js中随意配置 默认链接为原神的官网 ----曹雪宸小 & xxx 23.11.15</h3>
Expand Down Expand Up @@ -181,4 +199,4 @@ <h3>自己提出需求 自己解决 ----xxx 23.11.xx</h3>

</body>

</html>
</html>

0 comments on commit 0515c98

Please sign in to comment.