HTML - DOM样式对象perspectiveOrigin属性



HTML DOM 样式对象**perspectiveOrigin**属性使用x轴和y轴设置3D元素的位置。它允许更改3D元素的底部位置。

通过定义perspectiveOrigin属性,子元素的位置不是我们定义该属性的父元素。它与perspective属性一起使用,并且只影响3D变换元素。

语法

设置perspectiveOrigin属性
object.style.perspectiveOrigin= "x-axis y-axis|initial|inherit";
获取perspectiveOrigin属性
object.style.perspectiveOrigin;

属性值

描述
x轴 它表示x轴上视图的水平位置。x轴的可能值如下所示
  • 长度值
  • 百分比值
  • 居中
y轴 它表示y轴上视图的垂直位置。y轴的可能值如下所示
  • 长度值
  • 百分比值
  • 居中
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

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

HTML DOM 样式对象“perspectiveOrigin”属性示例

下面的示例设置父div元素的perspectiveOrigin属性。

设置perspectiveOrigin属性

下面的示例将父div元素的perspectiveOrigin属性设置为**左**、**右**和**居中**。

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

使用“长度值”和“百分比值”设置perspectiveOrigin

下面的示例将父div元素的perspectiveOrigin属性设置为**长度值**和**百分比值**。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object perspectiveOrigin Property
    </title>
    <style>
        #perspective {
            padding: 50px;
            height: 180px;
            width: 200px;
            border: 2px solid;
            background-color: azure;
            perspective: 100px;
        }
        #child {
            padding: 10px;
            height: 100px;
            width: 100px;
            border: 2px solid #04af2f;
            background-color: aquamarine;
            transform: rotateX(20deg);
        }
    </style>
</head>
<body>
    <p>
        Click to set Perspective Origin property.
    </p>
    <button onclick="fun()">Using length</button>
    <button onclick="funTwo()">length & percentage</button>
    <button onclick="funThree()">Using percentage</button>
    <div id="perspective">
        <div id="child">
            Welcome to Tutorials Point...
        </div>
    </div>
    <script>
        function fun() {
            document.getElementById("perspective")
                .style.perspectiveOrigin = "5px 40px";
        }  
        function funTwo() {
            document.getElementById("perspective")
                .style.perspectiveOrigin = "40px 5%";
        }  
        function funThree() {
            document.getElementById("perspective")
                .style.perspectiveOrigin= "1% 10%";
        }      
    </script>
</body>
</html>

支持的浏览器

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