* Copyright (c) 2025 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Picture-in-Picture Demo</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
video {
width: 60%;
border: 1px solid #ccc;
border-radius: 8px;
margin-bottom: 20px;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
</style>
</head>
<body>
<video id="video" src="https://www.runoob.com/try/demo_source/mov_bbb.mp4" controls></video>
<button id="togglePipButton">开启画中画</button>
<script>
const video = document.getElementById("video");
const togglePipButton = document.getElementById("togglePipButton");
togglePipButton.hidden =
!document.pictureInPictureEnabled || video.disablePictureInPicture;
togglePipButton.addEventListener("click", async () => {
try {
if (document.pictureInPictureElement) {
await document.exitPictureInPicture();
} else {
await video.requestPictureInPicture();
}
} catch (err) {
console.error("Picture-in-Picture mode failed:", err);
}
});
video.addEventListener('enterpictureinpicture', () => {
togglePipButton.textContent = "退出画中画";
});
video.addEventListener('leavepictureinpicture', () => {
togglePipButton.textContent = "开启画中画";
});
</script>
</body>
</html>