La función de rotarX() es una función incorporada que se utiliza para rotar un elemento alrededor del eje x.
Sintaxis:
rotateX( angle )
Parámetros: esta función acepta un solo parámetro de ángulo que representa el ángulo de rotación. Los ángulos positivo y negativo giran los elementos en sentido horario y antihorario respectivamente.
Los siguientes ejemplos ilustran la función de rotarX() en CSS:
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title>CSS rotateX() function</title> <style> body { text-align:center; } h1 { color:green; } .rotateX_image { transform: rotateX(60deg); } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>CSS rotateX() function</h2> <img class="rotateX_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 rotateX() function</title> <style> body { text-align:center; } h1 { color:green; } .GFG { font-size:35px; font-weight:bold; color:green; transform: rotateX(60deg); } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>CSS rotateX() function</h2> <div class="GFG">Welcome to GeeksforGeeks</div> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con la función de rotar X() se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera