Skip to content

Instantly share code, notes, and snippets.

@agustinpfs
Created June 12, 2020 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agustinpfs/58010c2d68de7314f23ca5fc53a0cdde to your computer and use it in GitHub Desktop.
Save agustinpfs/58010c2d68de7314f23ca5fc53a0cdde to your computer and use it in GitHub Desktop.
CSS básico. Animaciones.
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
@keyframes miAnimacion {
0% {
color: green;
}
25% {
color: yellow;
}
50% {
color: red;
}
100% {
color: blue;
}
}
h1 {
animation-name: miAnimacion;
animation-duration: 2s;
animation-iteration-count: infinite;
}
</style>
</head>
<body>
<h1>hola mundo</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment