A website is composed of several features. Each feature is developed to cater to a requirement. Several of these requirements are fulfilled via Web APIs. For instance, you can access the browser's local storage to save and retrieve data via Web Storage API.
You often have seen on YouTube that you could make a video appear on top of a page. How do you implement this? The most straightforward answer is using one of the available Web APIs, i.e., Picture-in-Picture API. Let’s briefly look at it.
This API was first introduced Safari in 2016 when macOS Sierra was released. It lets you toggle a video on top of the web pages. This helps with multitasking as the user can consume media and, at the same time, work on other sites.
The Picture-in-Picture API has limited support. It is not supported on major browsers, including desktop and mobile versions of Firefox, Internet Explorer, and all other mobile browsers except Safari.
Let’s look at how you can use this API.
The first thing you need to do is see whether the browser supports the API or not. You can do it by running the following code:
js
if (document.pictureInPictureEnabled && !videoElement.disablePictureInPicture) {console.log('API is supported');} else {console.log('API is not supported');}
You can call the Picture-in-Picture API on a video element by running the following code:
js
videoElement.requestPictureInPicture();
Once you are in the Picture-in-Picture state, you can also quit it any time using the following code:
js
document.exitPictureInPicture();
Let’s take a look at the few benefits of this API: