La función translate() es una función incorporada que se utiliza para reposicionar un elemento en dirección horizontal y vertical.
Sintaxis:
translate( tx )
o
translate( tx, ty )
Parámetros:
- tx: este parámetro contiene la longitud de la traducción correspondiente al eje x.
- ty: este parámetro contiene la longitud de la traducción correspondiente al eje y. Si no se define su valor, toma 0 como valor por defecto.
Los siguientes ejemplos ilustran la función translate() en CSS:
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title>CSS translate() function</title> <style> body { text-align:center; } h1 { color:green; } .translate_image { transform: translate(100px, 0); } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>CSS translate() function</h2> <h4>Original Image</h4> <img src= "https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png" alt="GeeksforGeeks logo"> <br> <h4>Translate image</h4> <img class="translate_image" src= "https://media.geeksforgeeks.org/wp-content/cdn-uploads/20190710102234/download3.png" alt="GeeksforGeeks logo"> </body> </html>
Producción:
Ejemplo 2:
<!DOCTYPE html> <html> <head> <title>CSS translate() function</title> <style> body { text-align:center; } h1 { color:green; } .GFG { font-size:35px; font-weight:bold; color:green; } .geeks { transform: translate(100px, 100px); } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>CSS translate() 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>
Producción:
Navegadores compatibles: los navegadores compatibles con la función translate() se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera