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


HTML TransitionEvent propertyName用法及代碼示例


TransitionEvent propertyName屬性是隻讀屬性,用於在發生transitionevent時返回與過渡關聯的CSS屬性的名稱。

返回值:它返回一個表示過渡名稱的字符串。

用法:


event.propertyName

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

例:獲取與轉換關聯的屬性名稱。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>TransitionEvent propertyName Property 
  </title> 
    
    <style> 
        #MyDiv { 
            width:100px; 
            height:20px; 
            background:green; 
            transition:3s; 
        } 
          
        #MyDiv:hover { 
            width:300px; 
        } 
          
        h1 { 
            color:green; 
        } 
          
        h2 { 
            font-family:Impact; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
    
<body> 
  
    <h1>GeeksforGeeks</h1> 
    <h2>TransitionEvent propertyName Property</h2> 
  
    <p>Hover over the element to see the name of  
      the CSS property the transition effect is for. </p> 
  
    <div id="MyDiv"></div> 
  
    <script> 
        document.getElementById("MyDiv").addEventListener( 
          "transitionend", myevent); 
  
        function myevent(event) { 
            
            //  Return CSS property name. 
            this.innerHTML = "CSS Property used:" +  
              event.propertyName; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

在單擊按鈕之前:

單擊按鈕後:

支持的瀏覽器:

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


相關用法


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