blob: 8f0f76311b2ba4a6cd7e3412eb719d6ebcb5b473 (
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
|
<!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;
}
.transparent-background {
background-color: transparent;
}
.alpha-background {
background-color: rgba(255, 0, 0, 0.5);
}
</style>
<body>
<div class="container">
<div class="overlay transparent-background">This is a fully transparent overlay</div>
<video id="video-transparent-background" src="test-video.mp4" loop="true"></video>
</div>
<div class="container">
<div class="overlay alpha-background">This is a partially transparent overlay using alpha</div>
<video id="video-alpha-background" src="test-video.mp4" loop="true"></video>
</div>
</body>
</html>
|