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


HTML Style perspective用法及代碼示例


HTML DOM中的“樣式”透視圖屬性用於確定元素距Z平麵的距離。它提供了元素的3D視圖。

用法:

  • 它返回透視圖屬性。
    object.style.perspective
  • 它設置透視圖屬性。
    object.style.perspective = "none|length|initial|inherit"

屬性值:


  • none:它是默認值。它將透視圖設置為零或未設置透視圖。
  • length:它設置了元素從視圖放置的距離。
  • initial:它將元素設置為其初始位置。
  • inherit:元素從父元素繼承其屬性。

例:本示例顯示DOM樣式透視圖屬性。

<!DOCTYPE html> 
<html> 
      
<head> 
      
    <style> 
        #circle { 
            height:400px; 
            width:400px; 
            margin-left:50px; 
            background-color:#555; 
            border-radius:50%; 
        } 
        #container { 
            padding:50px; 
            margin:0 60px; 
            border:1px solid black; 
            background-color:white; 
            transform:rotateX(15deg); 
        } 
        h1, h2 { 
            color:green; 
            font-weight:bold; 
        } 
    </style> 
</head> 
  
<body> 
    <div id="circle"> 
          
        <button onclick="myGeeks()">  
            Click Here!  
        </button>  
          
        <div id="container"> 
            <h1>GeeksforGeeks</h1> 
              
            <h2> 
                A computer science portal for geeks 
            </h2> 
        </div> 
    </div> 
      
    <!-- Script to display perspective property -->
    <script> 
        function myGeeks() { 
            document.getElementById("circle").style.perspective 
                    = "100px"; 
        } 
    </script> 
</body> 
  
</html>                    

輸出:
之前單擊按鈕:

單擊按鈕後:

支持的瀏覽器:下麵列出了DOM樣式透視圖屬性支持的瀏覽器:

  • 穀歌瀏覽器36.0
  • Internet Explorer 10.0
  • Firefox 16.0
  • Safari 6.1
  • Opera 23.0


相關用法


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