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