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


HTML oncanplay事件用法及代码示例


当指定的音频/视频缓冲到足以开始时,就会发生HTML DOM oncanplay事件。

事件的发生顺序在音频/视频的加载过程中:

  1. onloadstart
  2. ondurationchange
  3. onloadedmetadata
  4. onloadeddata
  5. onprogress
  6. oncanplay
  7. oncanplaythrough

用法:


在HTML中:

<element oncanplay="myScript">

在JavaScript中:

object.oncanplay = function(){myScript};

在JavaScript中,使用addEventListener()方法:

object.addEventListener("canplay", myScript);

例:使用HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <center> 
        <h1 style="color:green"> 
          GeeksforGeeks 
      </h1> 
        <h2>HTML DOM oncanplay event</h2> 
  
        <video controls oncanplay="myFunction()"> 
            <source src="Geekfun.mp4" type="video/mp4"> 
        </video> 
  
        <script> 
            function myFunction() { 
                alert("Can start playing video"); 
            } 
        </script> 
    </center> 
</body> 
  
</html>

输出:

例:使用JavaScript

<!DOCTYPE html> 
<html> 
  
<body> 
    <center> 
        <h1 style="color:green"> 
          GeeksforGeeks 
      </h1> 
        <h2>HTML DOM oncanplay event</h2> 
  
        <video controls id="myVideo"> 
            <source src="Geekfun.mp4" type="video/mp4"> 
        </video> 
  
        <script> 
            document.getElementById("myVideo").oncanplay = function() { 
                myFunction() 
            }; 
  
            function myFunction() { 
                alert("Can start playing video"); 
            } 
        </script> 
    </center> 
</body> 
  
</html>

输出:

例:在JavaScript中,使用addEventListener()方法:

<!DOCTYPE html> 
<html> 
  
<body> 
    <center> 
        <h1 style="color:green"> 
          GeeksforGeeks 
      </h1> 
        <h2>HTML DOM oncanplay event</h2> 
  
        <video controls id="myVideo"> 
            <source src="Geekfun.mp4" type="video/mp4"> 
        </video> 
  
        <script> 
            document.getElementById( 
              "myVideo").addEventListener( 
              "canplay", myFunction); 
  
            function myFunction() { 
                alert("Can start playing video"); 
            } 
        </script> 
    </center> 
</body> 
  
</html>

输出:

支持的浏览器:DOM oncanplay Event支持的浏览器如下:

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


相关用法


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