CSS | función rotarZ()

La función de rotar Z() es una función incorporada que se utiliza para rotar un elemento alrededor del eje z.

Sintaxis:

rotateZ( 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 rotar Z() en CSS:

Ejemplo 1:

<!DOCTYPE html>
<html>
  
<head>
    <title>CSS rotateZ() function</title>
  
    <style>
        body {
            text-align: center;
        }
        h1 {
            color: green;
        }
        .rotateZ_image {
            transform: rotateZ(45deg);
        }
    </style>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
    <h2>CSS rotateZ() function</h2>
  
    <br><br>
  
    <img class="rotateZ_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 rotateZ() function</title>
  
    <style>
        body {
            text-align: center;
        }
        h1 {
            color: green;
        }
        .GFG {
            font-size: 35px;
            font-weight: bold;
            color: green;
            transform: rotateZ(45deg);
        }
    </style>
</head>
  
<body>
    <h1>GeeksforGeeks</h1>
    <h2>CSS rotateZ() function</h2>
  
    <br><br>
  
    <div class="GFG">Welcome to GeeksforGeeks</div>
</body>
  
</html>

Producción:

Navegadores compatibles: los navegadores compatibles con la función de rotar Z() se enumeran a continuación:

  • Google Chrome
  • explorador de Internet
  • Firefox
  • Ópera
  • Safari

Publicación traducida automáticamente

Artículo escrito por jit_t y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *