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


HTML DOM Style perspective屬性用法及代碼示例


HTML DOM 樣式透視圖屬性返回並修改在 HTML 文檔中查看 3D 元素的方式。

用法

以下是語法 -

一、回歸視角

object.perspective

2. 修改視角

object.perspective = “value”

這裏,value 可以是 -

解釋
Initial它將此屬性值設置為其默認值。
inherit它從其父元素繼承此屬性值。
None它沒有設定任何觀點。
length它以長度單位指定元素距視圖的距離。

讓我們看一個 HTML DOM 樣式透視屬性的例子 -

示例

<!DOCTYPE html>
<html>
<style>
   body {
      color:#000;
      height:100vh;
      background-color:#8BC6EC;
      background-image:linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
   }
   .btn {
      background:#db133a;
      border:none;
      height:2rem;
      border-radius:2px;
      width:40%;
      display:block;
      color:#fff;
      outline:none;
      cursor:pointer;
      margin:1rem auto;
   }
   .box {
      text-align:center;
      width:200px;
      height:200px;
      background-color:#db133a;
      transform:rotateX(25deg);
      margin:2rem auto;
   }
</style>
<body>
<h1 style="text-align:center">DOM Style perspective Property Demo</h1>
<div class='box'></div>
<button class="btn" onclick="set()">Set Perspective</button>
<script>
   function set() {
      document.body.style.perspective = "100px";
   }
</script>
</body>
</html>

輸出

點擊 ”Set Perspective” 按鈕設置視角red 盒子。

相關用法


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