圣诞节到了,今天在网上看到了一个挺好玩的小程序,喜欢的拿走吧
具体实现方法:
首选你需要在电脑上创建一个Hmtl页面,页面里边写上如下代码
点击展开 查看更多
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body id="codes">
</body>
<script type="text/javascript">
const loveCode = [
'2,2,6,3,6,2,2,4,2,3,4,3,2,4,2',
'2,1,8,1,8,1,2,4,2,2,2,2,2,2,2,4,2',
'2,2,15,2,2,4,2,1,2,4,2,1,2,4,2',
'2,4,12,5,4,3,2,4,2,1,2,4,2',
'2,6,8,8,2,4,2,4,2,1,2,4,2',
'2,8,4,10,2,5,2,2,2,2,2,4,2',
'2,9,2,11,2,6,4,4,6,1'
]
let line = ''
for(const code of loveCode){
let num = 9
for(const count of code.split(',')){
for(let i =0;i<count;i++){
line+=num
}
num = num===9?6:9
}
line +='</br>'
}
document.getElementById("codes").innerHTML=line
</script>
</html>
打开页面,我们按ctrl + F进行搜索,输入9,爱心出来啦!