Shoddy audio controls
authorCameron Ball <cameron@moodle.com>
Fri, 11 Dec 2020 09:40:44 +0000 (17:40 +0800)
committerCameron Ball <cameron@moodle.com>
Fri, 11 Dec 2020 09:40:44 +0000 (17:40 +0800)
index.html

index 3efd519..178a479 100644 (file)
          }
 
          #audio {
+             display: none;
+         }
+
+         #controls {
              z-index: 999;
+             position: absolute;
+             right: 0px;
+             bottom: 0px;
          }
         </style>
          </head>
         <audio autoplay loop controls id="audio">
             <source id="audio/1.mp4" src="" type="audio/webm" />
         </audio>
+        <div id="controls">
+            <button onclick="document.getElementById('audio').play()">Play</button>
+            <button onclick="document.getElementById('audio').pause()">Pause</button>
+        </div>
         <video autoplay muted loop id="video">
             <source src="video/1.mp4" type="video/mp4">
         </video>