viernes, 5 de enero de 2024

Circulo girando

 <!DOCTYPE html>

<html>

<head>

<style>

  .ball {

    position: absolute;

    width: 10px;

    height: 150px;

    margin: 50px auto 0;

    border-radius: 50%;

    background: radial-gradient(circle at 65% 15%, white 1px, aqua 3%, darkblue 60%, aqua 100%);

    animation: rotate 2s linear infinite;

  }


  @keyframes rotate {

    from {

      transform: rotate(0deg);

    }

    to {

      transform: rotate(360deg);

    }

  }

</style>

</head>

<body>

  <div class="ball"></div>

</body>

</html>


No hay comentarios:

Publicar un comentario