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


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