當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML TransitionEvent elapsedTime用法及代碼示例


TransitionEvent elapsedTime屬性用於返回發生transitionend事件時已運行過渡的秒數。 TransitionEvent elapsedTime屬性是隻讀屬性。

用法:

event.elapsedTime

返回值:它返回一個數字,該數字表示過渡已運行的秒數。


以下示例程序旨在說明TransitionEvent的elapsedTime屬性:

例:找出運行過渡的秒數。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>TransitionEvent elapsedTime Property 
   </title> 
    
    <style> 
        #div1 { 
            width:100px; 
            height:20px; 
            background:green; 
            transition:3s; 
        } 
          
        #div1:hover { 
            width:300px; 
        } 
          
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    














          "transitionend", myevent); 
  
        function myevent(event) { 
            
            // Return seconds. 
            this.innerHTML = "Transition time is:" +  
              event.elapsedTime + " seconds"; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

支持的瀏覽器:

  • Opera
  • IE瀏覽器
  • 穀歌瀏覽器
  • Firefox
  • 蘋果Safari


相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 HTML | DOM TransitionEvent elapsedTime Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。