Open In App

HTML | DOM Style perspective Property

The Style perspective property in HTML DOM is used to determine how far an element is placed from the Z plane. It provides the 3D view of an element. 

Syntax:



object.style.perspective
object.style.perspective = "none|length|initial|inherit"

Property Values:

Example: This example displays the DOM style perspective property. 






<!DOCTYPE html>
<html>
     
<head>
     
    <style>
        #circle {
            height: 400px;
            width: 400px;
            margin-left: 50px;
            background-color: #555;
            border-radius: 50%;
        }
        #container {
            padding: 50px;
            margin: 0 60px;
            border: 1px solid black;
            background-color: white;
            transform: rotateX(15deg);
        }
        h1, h2 {
            color:green;
            font-weight:bold;
        }
    </style>
</head>
 
<body>
    <div id="circle">
         
        <button onclick="myGeeks()">
            Click Here!
        </button>
         
        <div id="container">
            <h1>GeeksforGeeks</h1>
             
            <h2>
                A computer science portal for geeks
            </h2>
        </div>
    </div>
     
    <!-- Script to display perspective property -->
    <script>
        function myGeeks() {
            document.getElementById("circle").style.perspective
                    = "100px";
        }
    </script>
</body>
 
</html>                   

Output: Before Click on the button:

  

After Click on the button:

 

Supported Browsers: The browser supported by DOM Style perspective Property are listed below:


Article Tags :