-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (63 loc) · 1.51 KB
/
index.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
<!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>imalexnow</title>
<link rel="stylesheet" href="frame.css">
<style>
.frames {
list-style: none;
list-style-type: none;
padding: 10px;
}
@media all and (min-width:770px) {
.frame {
max-width: 512px;
padding: 30px;
border-width: 40px;
}
}
@media all and (max-width: 769px) {
.frame {
max-width: 256px;
padding: 15px;
border-width: 20px;
}
}
.frame {
margin: auto auto;
}
.frame video {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<ul class="frames">
<li class="frame">
<video autoplay loop muted playsinline>
<source src="" type="video/mp4" name="canvas" />
</video>
</li>
</ul>
<script>
var imgArr = [
"videos/converted/envelopeheart.mp4",
"videos/converted/doveheart.mp4",
"videos/converted/monsterdoll.mp4",
"videos/converted/monsterdoll2.mp4",
"videos/converted/pebble.mp4",
"videos/converted/vial.mp4",
"videos/converted/garos.mp4",
];
var num = Math.floor(Math.random() * (imgArr.length));
var video = document.getElementsByTagName('video')[0];
var sources = video.getElementsByTagName('source');
sources[0].src = imgArr[num];
video.load();
</script>
</body>
</html>