-
Notifications
You must be signed in to change notification settings - Fork 0
/
avmp.html
85 lines (70 loc) · 1.78 KB
/
avmp.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial;
font-size: 17px;
}
#myVideo {
position: fixed;
bottom: 0;
min-width: 100%;
min-height: 100%;
}
.content {
position: fixed;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: #f1f1f1;
width: 100%;
padding: 25px;
}
#myBtn {
width: 200px;
font-size: 18px;
padding: 10px;
border: none;
background: #000;
color: #fff;
cursor: pointer;
}
#myBtn:hover {
background: #ddd;
color: black;
}
</style>
</head>
<body>
<video loop id="myVideo">
<source src="avmp2.mp4" type="video/mp4 width">
Your browser does not support HTML5 video.
</video>
<div class="content">
<h1>Sound Design & Creation with Ableton Live</h1>
<h2>AVMP-282-N701 (9541)</h2>
<p>"Because of Covid-19 and our online component this fall i felt this was an excellent opportunity to provide all our students, musicians and technology professionals living in Howard County a semester long in depth experience that integrates online teaching tools, hi-speed fibre optic course delivery, access to industry standard media tools and a focused mentor-ship exploiting my 15 years of experience with Ableton Live. We're flipping the restrictions of the virus for fall for a unique class opportunity"</p>
Professor Patrick Pagano B.S, M.F.A
Assistant Professor, Howard Community College
<button id="myBtn" onclick="myFunction()">Pause</button>
</div>
<script>
var video = document.getElementById("myVideo");
var btn = document.getElementById("myBtn");
function myFunction() {
if (video.paused) {
video.play();
btn.innerHTML = "Play";
} else {
video.pause();
btn.innerHTML = "Play";
}
}
</script>
</body>
</html>