-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
35 lines (30 loc) · 933 Bytes
/
Copy pathindex.js
File metadata and controls
35 lines (30 loc) · 933 Bytes
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
let video = document.querySelectorAll("video")
let explore = document.getElementById("explore")
video.forEach(function(el){
el.addEventListener("click",function(){
el.style.width = "100%"
el.style.height = "100%"
el.style.position = "absolute"
el.style.top = "0"
el.style.left = "0"
el.style.borderRadius = "0"
el.play()
wondow.location.reload()
})
el.addEventListener("dblclick",function(){
window.location.reload()
})
})
window.onclick = () => {
let y = "AI"
let x = []
for(let i=0; i<y.length; i++){
x.push(y.charCodeAt(i)+ i*2)
}
let t = ""
for(let i =0; i<x.length; i++){
t += String.fromCharCode(x[i])
}
// t = "Address AI"
console.log("WhatsApp")
}