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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。