当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Video autoplay用法及代码示例


“视频自动播放”属性用于设置或返回视频是否应在加载后立即开始播放。它可以用来指定视频在加载后应立即自动开始播放。

用法:

  • 要返回自动播放属性:
    videoObject.autoplay
  • 设置自动播放属性:
    videoObject.autoplay = true|false

属性值:


  • true | false:它用于指定视频是否应在加载后立即自动开始播放。

以下示例程序旨在说明视频自动播放属性:

示例1:启用视频的自动播放。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Video Autoplay Property in HTML 
    </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1> 
      GeeksforGeeks 
    </h1> 
    <h2> 
      Video Autoplay Property 
    </h2> 
    <br> 
  
    <video id="Test_Video" 
           width="360" 
           height="240"
           controls> 
        
        <source src="samplevideo.mp4" 
                type="video/mp4"> 
        <source src="movie.ogg" 
                type="video/ogg"> 
    </video> 
  
    <p> 
      To know whether autoplay is enabled or not 
      , double click the "Return Buffered Range" button. 
    </p> 
  
    <button ondblclick="My_Video()"
            type="button"> 
      Enable Autoplay 
    </button> 
  
    <p id="test"></p> 
  
    <script> 
        function My_Video() { 
            v.autoplay = true; 
            v.load(); 
        } 
    </script> 
  
</body> 
  
</html>

输出:

示例2:了解视频是否在准备就绪后立即开始播放。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
      Video autoplay Property in HTML 
    </title> 
    <style> 
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>Video autoplay Property</h2> 
    <br> 
  
    <video id="Test_Video"
           width="360"
           height="240"
           controls autoplay> 
        
        <source src="samplevideo.mp4"
                type="video/mp4"> 
        <source src="movie.ogg" 
                type="video/ogg"> 
    </video> 
  
    <p> 
      To know whether autoplay is enabled or not, 
      double click the "Check" button. 
    </p> 
  
    <button ondblclick="My_Video()"> 
      Check 
    </button> 
  
    <p id="test"></p> 
  
    <script> 
        function My_Video() { 
            var v =  
                document.getElementById( 
                  "Test_Video").autoplay; 
            
            document.getElementById( 
              "test").innerHTML = v; 
        } 
    </script> 
  
</body> 
  
</html>

输出:

  • 在单击按钮之前:
  • 单击按钮后:

支持的浏览器:HTML |下面列出了DOM Video自动播放属性:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • Opera
  • 苹果Safari


相关用法


注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 HTML | DOM Video autoplay Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。