Android WeChat exits the full screen method

When working on the h5 project, the Android full-screen mode exit plan:

<script>

  var video = document.getElementById(< /span>'video');
 
//Monitor the end of the video playback
   video.addEventListener( 'ended'< /span>, function () {
    
this.srcObject = new window.webkitMediaStream;
   });
   
//You can also directly call video.srcObject = new window.webkitMediaStream; to exit the video full screen mode
script>

<script>

  var video = document.getElementById(< /span>'video');
 
//Monitor the end of the video playback
   video.addEventListener( 'ended'< /span>, function () {
    
this.srcObject = new window.webkitMediaStream;
   });
   
//You can also directly call video.srcObject = new window.webkitMediaStream; to exit the video full screen mode
script>

Leave a Comment

Your email address will not be published.