HTML - DOM Style 对象 perspective 属性



HTML DOM Style 对象 **perspective** 属性指定元素距离 z=0 平面的距离,以提供元素的 3D 视图。它应用于父元素,因为它会影响子元素。

属性值越小,3D 效果越强,深度感越强;属性值越大,深度感和 3D 效果越弱。

语法

设置 perspective 属性
object.style.perspective= "length | none | initial | inherit";
获取 perspective 属性
object.style.perspective;

属性值

描述
length 指定元素距视图的距离。
none 默认值,不设置透视。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

返回一个字符串值,表示元素的 perspective 属性。

HTML DOM Style 对象 'perspective' 属性示例

以下示例在 id 为 'perspective' 的 div 元素上设置 perspective 属性,其效果显示在其 id 为 'child' 的子 div 元素上。此示例还使用 **none** 值删除 perspective 属性。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object perspective Property
    </title>
    <style>
        #perspective {
            padding: 50px;
            height: 200px;
            width: 200px;
            border: 2px solid;
            background-color: azure;
        }
        #child {
            padding: 10px;
            height: 100px;
            width: 100px;
            border: 2px solid #04af2f;
            background-color: aquamarine;
            transform: rotateX(20deg);
        }
    </style>
</head>
<body>
    <p>Click to add perspective.</p>
    <button onclick="fun()">Add Perspective</button>
    <button onclick="funTwo()">Remove Perspective</button>
    <div id="perspective">
        <div id="child">
            Welcome to Tutorials Point...
        </div>
    </div>
    <script>
        function fun() {
            document.getElementById("perspective")
                .style.perspective = "100px";
        }  
        function funTwo() {
            document.getElementById("perspective")
                .style.perspective = "none";
        }      
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
perspective 是 36 是 12 是 16 是 9 是 23
html_dom_style_object_reference.htm
广告