-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path이진수 눈뽕.html
More file actions
41 lines (37 loc) · 1.04 KB
/
이진수 눈뽕.html
File metadata and controls
41 lines (37 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!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>
<style>
body{
background-color: black;
color: green;
overflow: hidden;
}
</style>
</head>
<body>
<div></div>
<script>
const div = document.querySelector('div');
let x = 0;
const func = () =>{
if(x >= (innerWidth / (1440 / 99)) * (innerHeight / 21)){
div.innerHTML = ''
x = 0
}
for(let i = 0; i < (innerWidth / (1440 / 99)) * (innerHeight / 21); i++){
const span = document.createElement('span')
span.innerHTML = `${Math.floor(Math.random() * 2 + 1) % 2} `
x++
div.appendChild(span)
}
requestAnimationFrame(func)
}
func()
</script>
</body>
</html>