blob: 9917fba973e9e41563387a2bbc5ddafd70c293ea (
plain)
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
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Picture-in-Picture test - transparent overlays - 1</title>
<script type="text/javascript" src="click-event-helper.js"></script>
</head>
<style>
video {
display: block;
}
.container {
position: relative;
display: inline-block;
}
.overlay {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
color: white;
}
.toggle-overlay {
position: absolute;
min-width: 50px;
right: 0px;
height: 100%;
top: calc(50% - 25px);
}
button {
height: 100px;
}
.transparent-background {
background-color: transparent;
}
.partial-opacity {
opacity: 0.5;
}
.full-opacity {
opacity: 1.0;
background-color: green;
}
.no-pointer-events {
pointer-events: none;
}
.pointer-events {
pointer-events: auto;
}
</style>
<body>
<div class="container">
<div class="overlay transparent-background no-pointer-events">
This is a fully transparent overlay using a transparent background.
<div class="toggle-overlay partial-opacity pointer-events">
<button>I'm a button overlapping the toggle</button>
</div>
</div>
<video id="video-partial-transparent-button" src="test-video.mp4" loop="true"></video>
</div>
<div class="container">
<div class="overlay transparent-background no-pointer-events">
This is a fully transparent overlay using a transparent background.
<div class="toggle-overlay full-opacity pointer-events">
<button>I'm a button overlapping the toggle</button>
</div>
</div>
<video id="video-opaque-button" src="test-video.mp4" loop="true"></video>
</div>
</body>
</html>
|