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


HTML Style transitionProperty用法及代碼示例


HTML DOM中的Style transistionProperty屬性用於為過渡效果設置CSS屬性的名稱。當用戶將鼠標懸停在元素上時,可能會發生這種情況。它返回元素的transistionProperty屬性。

用法:

  • 它返回transistionProperty屬性。
    object.style.transistionProperty
  • 它用於設置transistionProperty屬性。
    object.style.transistionProperty = "none | all | property | 
    initial | inherit"

屬性值:


  • none:伸縮效果不會應用於任何元素。
  • all:所有元素都將獲得過渡效果。這是默認值。
  • property:它用於指定CSS屬性名稱的逗號分隔值以產生過渡效果。
  • intial:它將transistionProperty屬性設置為其默認值。
  • inherit:此屬性從其父元素繼承。

返回值:它返回一個表示元素的transistionProperty屬性的字符串。

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Style transistionProperty Property </title> 
    <style> 
        #gfg { 
            border:3px solid blue; 
            background-color:green; 
            width:100px; 
            height:50px; 
            -webkit-transition:all 2s; 
            <!-- for safari 3.1 to 6.0-->
          transition:all 2s; 
        } 
          
        #gfg:hover { 
            background-color:green; 
            width:200px; 
            height:100px; 
        } 
    </style> 
</head> 
  
<body> 
  
    <center> 
        <h1 style="color:green;">  
                GeeksForGeeks  
            </h1> 
        <h2>DOM Style transistionProperty  Property </h2> 
        
        <div id="gfg" style="color:white">  
          A Computer science portal for geeks 
       </div> 
  
        <button type="button" onclick="geeks()"> 
            Click 
        </button> 
  
        <script> 
            function geeks() { 
                document.getElementById( 
                  "gfg").style.transistionProperty = "all"; 
                
                //  for safari 3.1 to 6.0  
                document.getElementById( 
                  "gfg").style.WebkitTransitionProperty = "all";  
            } 
        </script> 
    </center> 
</body> 
  
</html>

輸出:

  • 懸停之前:
  • 懸停後:

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Style transistionProperty Property </title> 
    <style> 
        #gfg { 
            border:3px solid blue; 
            background-color:green; 
            width:100px; 
            height:50px; 
            -webkit-transition:all 2s; 
            <!-- for safari -->
            transition:all 2s; 
        } 
          
        #gfg:hover { 
            background-color:green; 
            width:200px; 
            height:100px; 
        } 
    </style> 
</head> 
  
<body> 
  
    <center> 
        <h1 style="color:green;">  
                GeeksForGeeks  
            </h1> 
        <h2>DOM Style transistionProperty  Property </h2> 
        
        <div id="gfg" style="color:white"> 
          A Computer science portal for geeks 
      </div> 
  
        <button type="button" onclick="geeks()"> 
            Click 
        </button> 
  
        <script> 
            function geeks() { 
                
                document.getElementById( 
                  "gfg").style.transistionProperty = 
                  "width, height"; 
                
                document.getElementById( 
                  "gfg").style.WebkitTransitionProperty =  
                  "width, height"; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

輸出:

  • 懸停之前:
  • 懸停後:

支持的瀏覽器:以下列出了DOM Style transistionProperty屬性支持的瀏覽器:

  • 穀歌瀏覽器26.0
  • Internet Explorer 10.0
  • Firefox 16.0
  • Opera 12.1
  • 蘋果Safari 6.1


相關用法


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