La función skewX() es una función incorporada que se utiliza para transformar un elemento en dirección horizontal en un plano 2D.
Sintaxis:
skewX( a )
Parámetros: esta función acepta un único parámetro que contiene el ángulo que representa el eje horizontal.
Los siguientes ejemplos ilustran la función skewX() en CSS:
Ejemplo 1:
<!DOCTYPE html> <html> <head> <title>CSS skewX() function</title> <style> body { text-align:center; } h1 { color:green; } .skewX_image { transform: skewX(30deg); } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>CSS skewX() function</h2> <img class="skewX_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 skewX() function</title> <style> body { text-align:center; } h1 { color:green; } .GFG { font-size:35px; font-weight:bold; color:green; transform: skewX(45deg); } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>CSS skewX() function</h2> <div class="GFG">Welcome to GeeksforGeeks</div> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con la función skewX() se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera