Open In App

CSS translate3d() Function

Last Updated : 30 Aug, 2024
Suggest changes
Share
Like Article
Like
Report

The translate3d() function is an inbuilt function which is used to reposition an element in 3D space. 

Syntax:

translate3d( tx, ty, tz )

Parameters: This function accepts three parameters as mentioned above and described below:

  • tx: This parameter holds the length of translation corresponding to x-axis. This parameter holds the value in form of number or percentage.
  • ty: This parameter holds the length of translation corresponding to y-axis. This parameter holds the value in form of number or percentage.
  • tz: This parameter holds the length of translation corresponding to z-axis. This parameter holds the value in form of numbers only.

Below examples illustrate the translate3d() function in CSS: 

Example 1: 

html
<!DOCTYPE html> <html> <head> <title> CSS translate3d() function </title> <style>  body {  text-align: center;  }    h1 {  color: green;  }    .translate3d_image {  transform: translate3d(100px, 0, 0);  }  </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>CSS translate3d() function</h2> <h4>Original Image</h4> <img src= "https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png" alt="GeeksforGeeks logo"> <br> <h4>Translated image</h4> <img class="translate3d_image" src= "https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png" alt="GeeksforGeeks logo"> </body> </html> 

Output:  Example 2: 

html
<!DOCTYPE html> <html> <head> <title>CSS translate3d() function</title> <style>   body {  text-align:center;  }  h1 {  color:green;  }  .GFG {  font-size:35px;  font-weight:bold;  color:green;  }  .geeks {  transform: translate3d(100px, 20px, 0);  }  </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>CSS translate3d() function</h2> <h4>Original Element</h4> <div class="GFG">Welcome to GeeksforGeeks</div> <h4>Translated Element</h4> <div class="GFG geeks">Welcome to GeeksforGeeks</div> </body> </html> 

Output:  

Supported Browsers: The browsers supported by translate3d() function are listed below:

  • Google Chrome 12
  • Edge 12
  • Internet Explorer 10
  • Firefox 10
  • Safari 4
  • Opera 15

Explore