-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscript.js
76 lines (62 loc) · 2.69 KB
/
script.js
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
window.addEventListener("mousemove", function(chahcha){
document.querySelector("#slidephoto").style.top=`${chahcha.clientY}px`
document.querySelector("#slidephoto").style.left=`${chahcha.clientX}px`
document.querySelector("#slidephoto").style.transform =`translate(${-chahcha.clientX*0.20}px, ${-chahcha.clientY*0.45}px)`
});
document.querySelector("#chainn")
.addEventListener("mousemove", function(){
document.querySelector("#slidephotos").style.marginTop = "0%"
document.querySelector("#chainn").style.color = "rgb(177, 177, 177)"
})
document.querySelector("#chainn")
.addEventListener("mouseleave", function(){
document.querySelector("#chainn").style.color = "initial"
})
document.querySelector("#aty")
.addEventListener("mousemove", function(){
document.querySelector("#slidephotos").style.marginTop = "-120%"
document.querySelector("#aty").style.color = "rgb(177, 177, 177)"
})
document.querySelector("#aty")
.addEventListener("mouseleave", function(){
document.querySelector("#aty").style.color = "initial"
})
document.querySelector("#mic")
.addEventListener("mousemove", function(){
document.querySelector("#slidephotos").style.marginTop = "-240%"
document.querySelector("#mic").style.color = "rgb(177, 177, 177)"
})
document.querySelector("#mic")
.addEventListener("mouseleave", function(){
document.querySelector("#mic").style.color = "initial"
})
document.querySelector("#tapso")
.addEventListener("mousemove", function(){
document.querySelector("#slidephotos").style.marginTop = "-360%"
document.querySelector("#tapso").style.color = "rgb(177, 177, 177)"
})
document.querySelector("#tapso")
.addEventListener("mouseleave", function(){
document.querySelector("#tapso").style.color = "initial"
})
document.querySelector("#eff")
.addEventListener("mousemove", function(){
document.querySelector("#slidephoto").style.display = "initial"
document.querySelector("#slidephoto").style.opacity = 1
})
document.querySelector("#eff")
.addEventListener("mouseleave", function(){
document.querySelector("#slidephoto").style.display = "none"
document.querySelector("#slidephoto").style.opacity = 0
})
document.querySelector("#btnsm")
.addEventListener("mousemove", function(){
document.querySelector("#btnsm").style.backgroundColor = "blue"
document.querySelector("#btnsm").style.cursor = "pointer"
document.querySelector("#btnsm h1").style.color = "white"
})
document.querySelector("#btnsm")
.addEventListener("mouseleave", function(){
document.querySelector("#btnsm").style.backgroundColor = "initial"
document.querySelector("#btnsm h1").style.color = "rgb(95, 95, 95)"
})