-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmouse hover.htm
More file actions
33 lines (33 loc) · 816 Bytes
/
mouse hover.htm
File metadata and controls
33 lines (33 loc) · 816 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
<!DOCTYPE html>
<html>
<head>
<script>
function bgChange(bg) {
document.body.style.background = bg;
}
</script>
</head>
<body align="center">
<h2>Change background color</h2>
<p>Mouse over the squares!</p>
<table style="width:300px;height:100px" align = "center">
<tr>
<td onmouseover="bgChange(style.backgroundColor)"
onmouseout="bgChange('transparent')"
style="background-color:red;width:100px;height:100px">
RED
</td>
<td onmouseover="bgChange(style.backgroundColor)"
onmouseout="bgChange('transparent')"
style="background-color:green;width:100px;height:100px">
GREEN
</td>
<td onmouseover="bgChange(style.backgroundColor)"
onmouseout="bgChange('transparent')"
style="background-color:yellow;width:100px;height:100px">
YELLOW
</td>
</tr>
</table>
</body>
</html>