Style perspective 属性

Style 对象参考手册 Style 对象

设置元素被查看位置的视角:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>蜜蜂教程(mifengjc.com)</title>
  <style>
    #div1 {
      position: relative;
      margin: auto;
      height: 150px;
      width: 250px;
      padding: 10px;
      border: 1px solid black;
      -webkit-perspective: 200px;
      /* Chrome, Safari, Opera */
      perspective: 200px;
    }

    #div2 {
      padding: 50px;
      position: absolute;
      border: 1px solid black;
      background-color: red;
      -webkit-transform: rotateX(45deg);
      /* Chrome、Safari、Opera */
      transform: rotateX(45deg);
    }
  </style>
</head>
<body>

  <p>点击“尝试一下”按钮,改变 DIV1 元素的 perspective 属性:</p>
  <button onclick="myFunction()">尝试一下</button>
  <div id="div1">DIV1
    <div id="div2">假设您是一只鸟,从上往下看墙面。然后点击按钮来看看当您改变视角时会发生什么!</div>
  </div>
  <script>
    function myFunction() {
      document.getElementById("div1").style.perspective = "100px";
      /* Safari 和 Chrome */
      document.getElementById("div1").style.WebkitPerspective = "100px";
    }
  </script>

</body>
</html>

尝试一下 »


定义和用法

perspective 属性定义 3D 元素距视图的距离,以像素计。该属性允许您改变 3D 元素被查看的视角。

当为元素定义 perspective 属性时,其子元素会获得透视效果,而不是元素本身。

注意:perspective 属性只影响 3D 转换元素!

提示:请把该属性与 perspectiveOrigin 属性一起使用,这样您就能够改变 3D 元素的底部位置。


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

IE10+ 和 Firefox 支持 perspective 属性。

Chrome、Safari 和 Opera 支持另一个可替代该属性的属性,即 WebkitPerspective 属性。


语法

返回 perspective 属性:

object.style.perspective

设置 perspective 属性:

object.style.perspective = "length|none"

属性值

描述
length 元素距离视图的距离,以像素计。
none 默认值。与 0 相同。不设置透视。
initial 设置该属性为它的默认值。请参阅 initial
inherit 从父元素继承该属性。请参阅 inherit

技术细节

默认值: none
返回值: 字符串,表示元素的 perspective 属性。
CSS 版本 CSS3

相关文章

JavaScript Style 对象:perspectiveOrigin 属性

CSS 参考手册:perspective 属性


Style 对象参考手册 Style 对象