Update index.html

dev
Aji Kamaludin 6 years ago committed by GitHub
parent 7c8666d408
commit b40d8174fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -19,6 +19,30 @@
<button name="shareButton" id="shareButton" >Share</button> <button name="shareButton" id="shareButton" >Share</button>
</div> </div>
</section> </section>
<video id="video" src="https://www.videvo.net/videvo_files/converted/2017_04/videos/170216A_023_BoyatWindow4_1080p.mp439692.mp4"></video>
<button id="pipButton"></button>
<script>
// Hide button if Picture In Picture is not supported.
pipButton.hidden = !document.pictureInPictureEnabled;
pipButton.addEventListener('click', function() {
// If there is no element in Picture In Picture yet, let's request Picture
// In Picture for the video, otherwise leave it.
if (!document.pictureInPictureElement) {
video.requestPictureInPicture()
.catch(error => {
// Video failed to enter Picture In Picture mode.
});
} else {
document.exitPictureInPicture()
.catch(error => {
// Video failed to leave Picture In Picture mode.
});
}
});
</script>
</body> </body>
<script> <script>
shareButton.addEventListener("click", async () => { shareButton.addEventListener("click", async () => {

Loading…
Cancel
Save