-
Notifications
You must be signed in to change notification settings - Fork 0
/
day13.html
118 lines (100 loc) · 2.8 KB
/
day13.html
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!-- Javasrcipt Event-handling and Event Listeners -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Javasrcipt Event Handling and adding Event Listeners</title>
<style>
.box{
height: 200px;
background: red;
display: flex;
align-items: center;
justify-content: center;
}
.box1{
height: 10vh;
width: 10vh;
background-color: yellow;
}
.box2{
height: 10vh;
width: 10vh;
background-color: green;
}
.box3{
height: 10vh;
width: 10vh;
background-color: purple;
}
.box4{
height: 10vh;
width: 10vh;
background-color: orange;
}
input{
height: 20px;
width: 50%;
margin: 3vh auto;
border: 3px solid black;
}
</style>
</head>
<body>
<div class="box">
<!-- Event Handlers
<div class="box1" onclick="hello()"></div>
<div class="box2" onmousemove="move()"></div>
<div class="box3" onmouseenter="enter()"></div>
<div class="box4" onmouseleave="leave()"></div>
<input type="text" onkeypress="press()"> -->
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
<div class="box4"></div>
</div>
<input type="text">
<script>
// Event Handlers In Javasrcipt
// function hello(){
// console.log("Box1 Clicked")
// }
// function move(){
// console.log("Mouse is Moving in Box-2")
// }
// function enter(){
// console.log("Mouse Entered in Box-3")
// }
// function leave(){
// console.log("Mouse leaved from box-4")
// }
// function press(){
// console.log("Key is pressed in the input tag")
// }
// EventListners
let input = document.getElementsByTagName("input")[0];
input.addEventListener("keydown",(e)=>{
console.log("The key pressed is : ",e.key)
})
let box1 = document.getElementsByClassName("box1")[0];
// console.dir(box1);
// Making a array of colors
let arr =["black","yellow","pink","cyan","cyan","orange","violet","blue","green","indigo"];
let count = 0;
box1.addEventListener('click',()=>{
count++;
let color = count%arr.length;
box1.style.background = arr[color];
})
let box3 = document.getElementsByClassName("box3")[0];
// box3.style.display = "none"
box3.addEventListener('mouseover',()=>{
console.log("Mouse In ")
})
box3.addEventListener("mouseout",()=>{
console.log("Mouse Out ")
})
</script>
</body>
</html>