-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvines.php
85 lines (77 loc) · 3.29 KB
/
vines.php
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
82
83
84
85
<!DOCTYPE html>
<html lang="de">
<head>
<title>Vines - DHBW Mehms</title>
<link href="styles/vines.css" rel="stylesheet">
<?php include("includes/meta.php"); ?>
<style>
:root {
--banner-top: #ff9900;
--banner-bottom: #eb7967;
}
.vines {
animation: 0.2s color-p-primary forwards;
}
</style>
</head>
<body>
<?php include("includes/header.php"); ?>
<main class="container">
<div class="heading">
<h1>Vines</h1>
<h2>Videos, Audio und Animationen</h2>
</div>
<div class="paper">
<h3>Vines</h3>
<hr>
<div class="gallery">
<?php
$dirname = "./assets/vines/";
$videos = glob($dirname . "*" . "*");
foreach ($videos as $video) {
$videoName = explode("/", $video);
$videoName = end($videoName);
try {
echo '<figure class="vine"><video class="vine" width="560" height="315" controls><source src="' . $video . '" type="video/mp4">Your browser does not support the video tag.
</video><figcaption>' . $videoName . '</figcaption>
</figure>';
} catch (DivisionByZeroError $e) {
}
}
?>
</div>
<hr>
<h3>External and Audio-only</h3>
<hr>
<div class="gallery">
<figure class="vine">
<iframe class="vine" width="560" height="315" src="https://www.youtube.com/embed/EqekSuj5HCo" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<figcaption>Walter Frosch - Vollblutprofi</figcaption>
</figure>
<figure class="vine">
<iframe class="vine" width="560" height="315" src="https://www.youtube.com/embed/asjQNZn7vng" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<figcaption>Rendering at 5 AM</figcaption>
</figure>
<figure class="vine">
<iframe class="vine" width="560" height="315" src="https://www.youtube.com/embed/b8HO6hba9ZE" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<figcaption><em>We like to Party</em> - Thomas the Dank Engine</figcaption>
</figure>
<figure class="vine">
<iframe class="vine" width="560" height="315" src="https://www.youtube.com/embed/nXjro36-uLE" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<figcaption>Alex Jones vs Creeper</figcaption>
</figure>
<figure class="vine">
<iframe class="vine" width="560" height="315" src="https://www.youtube.com/embed/DRZ3F5VqseU" title="YouTube video player" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<figcaption>Shhh... Melon Thief</figcaption>
</figure>
<figure class ="vine">
<audio class="vine" controls><source src="assets/audio/audio.mp3" type="audio/mp3"></audio>
<figcaption>Rick Astley - Never gonna give you up</figcaption>
</figure>
</div>
</div>
</main>
<?php include("includes/footer.php"); ?>
<?php include("includes/bottom-navigation.php"); ?>
</body>
</html>