-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13-mouseEvents.html
91 lines (83 loc) · 2.46 KB
/
13-mouseEvents.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
<!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>mouse eveents in javaScript</title>
<style>
form {
width: 400px;
margin: 100px auto;
padding: 20px;
border: 1px solid #ddd;
border-radius: 8px;
}
form p {
margin: 0 0 10px;
}
form label {
display: inline-block;
width: 100px;
}
form input[type="text"],
form input[type="email"],
form input[type="password"] {
width: 200px;
padding: 5px;
}
form input[type="submit"] {
padding: 5px 20px;
border: 1px solid #ddd;
border-radius: 5px;
background: #eee;
cursor: pointer;
}
</style>
</head>
<body>
<form action="#" method="post">
<p>
<label for="name">Name:</label>
<input type="text" id="name" name="name">
</p>
<p>
<label for="email">Email:</label>
<input type="email" id="email" name="email">
</p>
<p>
<label for="password">Password:</label>
<input type="password" id="password" name="password">
</p>
<p>
<label for="confirm_password">Confirm Password:</label>
<input type="password" id="confirm_password" name="confirm_password">
</p>
<p>
<input type="submit" value="Submit" onclick="mouseEvent()" ondblclick="dubelClick()"
oncontextmenu="rightclick" onmouseenter="mouseHover()">
</p>
</form>
<script>
const mouseEvent=()=>{
return alert("mouse event onClick accour")
}
const dubelClick=()=>{
return alert("you call the ondblclick event ")
}
const rightclick=()=>{
return alert("you call the right click (oncontextmenue) event ")
}
// const mouseHover=()=>{
// return alert("you call the mouse hover (onmouseenter) event ")
// }
// there are eight mouse events :
//1: onclick
//2: ondblclick (double click)
//3: oncontextmenu (right click)
//4: onmouseenter (mouse Hover)
//5: onmouseout (mouse out / mouse in )
//7: onmousedown (mouse down / mouse up)
</script>
</body>
</html>