-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSS-position_overlap_hover.html
64 lines (64 loc) · 1.51 KB
/
CSS-position_overlap_hover.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSS Position & Hover</title>
<style>
.parent {
position: relative;
width: 50vw;
height: 50vh;
}
.hiddenElement {
display: none;
position: absolute;
}
.hoverElement {
position: absolute;
}
.hoverElement:hover {
display: none;
}
.hoverElement:hover ~ .hiddenElement {
/* ~ (tilde) Selector*/
display: block;
}
.txt {
position: absolute;
top: 80%;
left: 10%;
}
.hidden {
display: none;
position: absolute;
}
.visible {
position: absolute;
}
.visible:hover {
display: none;
}
.visible:hover ~ .hidden {
display: block;
}
/* similar class's can be merged to produce clean code */
</style>
</head>
<body>
<div class="parent">
<div class="hoverElement">Hover to reveal hidden pic!</div>
<div class="hiddenElement"><img src="img/birds.png" alt="" /></div>
</div>
<br />
<div class="parent">
<div class="visible">
<h2 class="txt">Hover Over Me</h2>
<img src="img/note.png" width="300" height="300" alt="notebook" />
</div>
<div class="hidden">
<img src="img/pencil.png" width="300" height="300" alt="pencil" />
</div>
</div>
</body>
</html>