29 junio, 2020

Centrar Botones y Animar Fondo

Para centrar usaremos flexbox y para animar un fondo los keyframes que nos permiten realizar animaciones increíbles sin javascript

Suscríbete a nuestro canal en Youtube

Suscríbirse

Para centrar usaremos flexbox y para animar un fondo los keyframes que nos permiten realizar animaciones increíbles sin javascript

<!DOCTYPE html>
<html lang="es">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title></title>
  <style>
    html,body{padding: 0; margin: 0;}
    body{
      background: linear-gradient(90deg, green 50%, greenyellow 50%);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      animation: bg 1s infinite linear;
    }
a{
  border-radius: 20px;
  padding: 10px 50px;
  margin: 10px;
  text-decoration: none;
}
a:hover{
  background: rgba(255, 255, 255, 0.543);
}
#btn_left{color: greenyellow;border: 1px solid greenyellow;}
#btn_right{color: green;border: 1px solid green;}
@keyframes bg {
  0% { background: linear-gradient(0deg, green 50%, greenyellow 50%);}
  25% { background: linear-gradient(45deg, green 50%, greenyellow 50%);}
  50% { background: linear-gradient(90deg, green 50%, greenyellow 50%); }
  75% { background: linear-gradient(135deg, green 50%, greenyellow 50%); }
  100% { background: linear-gradient(180deg, green 50%, greenyellow 50%); }
}
  </style>
</head>
<body>
  <a href="https://codea.app" id="btn_left" target="_blank">Botón</a>
  <a href="https://codea.app" id="btn_right" target="_blank">Botón</a>
</body>
</html>

 


Leido 9634 veces | 2 usuarios

Código fuente no disponible.

Compartir link del tutorial con tus amigos


Diseño Web con Bootstrap

USD 5.00

Descarga del código fuente

Diseño Web con Bootstrap
Diseño Web con HTML & CSS

USD 10.00

Descarga del código fuente

Diseño Web con HTML & CSS
Páginas Web desde Cero

USD 100.00

Descarga del código fuente

Páginas Web desde Cero

Más tutoriales de HTML + CSS

Codea Applications

México, Colombia, España, Venezuela, Argentina, Bolivia, Perú

© Copyright Codea::App Cursos de Programación Online | LATAM | 2020 - 2024