Loading Text Animation

Loading Text Animation code:

1.index.html:

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Loading Text Animation</title> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <ul> <li>L</li> <li>O</li> <li>A</li> <li>D</li> <li>I</li> <li>N</li> <li>G</li> </ul> </body> </html>

2.style.css:

body { margin: 0; padding: 0; font-family: Verdana, Geneva, Tahoma, sans-serif; font-weight: bold; background: blue; } ul { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); margin: 0; padding: 0; display: flex; } ul li { list-style: none; font-size: 5em; letter-spacing: 20px; animation: animate 3s linear infinite; } @keyframes animate { 0% { transform: translateX(-50px); letter-spacing: 20px; opacity: 0; color: yellow; } 10% { opacity: 1; } 50% { letter-spacing: -20px; opacity: 1; } 100% { transform: translateX(50px); letter-spacing: 20px; opacity: 0; color: red; } } ul li:nth-child(1) { animation-delay: 0s } ul li:nth-child(2) { animation-delay: 0.2s } ul li:nth-child(3) { animation-delay: 0.4s } ul li:nth-child(4) { animation-delay: 0.6s } ul li:nth-child(5) { animation-delay: 0.8s } ul li:nth-child(6) { animation-delay: 1s } ul li:nth-child(7) { animation-delay: 1.2s }

Оставьте комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *