Видео и код
Видео и код
...Читать далее
Код:
HTML:
<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<title>Animated Shadow Text</title>
</head>
<body>
<div class="wrapper">
<h1>Коди с CODI</h1>
</div>
</body>
</html>
CSS:
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Russo One', sans-serif;
background: black;
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
h1 {
color: black;
font-size: 140px;
letter-spacing: 4px;
text-transform: uppercase;
animation: animate linear 2000ms infinite;
}
@keyframes animate {
0% {
text-shadow:
4px -4px 0 blue,
3px -3px 0 blue,
2px -2px 0 blue,
1px -1px 0 blue,
-4px 4px 0 orange,
-3px 3px 0 orange,
-2px 2px 0 orange,
-1px 1px 0 orange
;
}
25% {
text-shadow:
-4px -4px 0 orange,
-3px -3px 0 orange,
-2px -2px 0 orange,
-1px -1px 0 orange,
4px 4px 0 blue,
3px 3px 0 blue,
2px 2px 0 blue,
1px 1px 0 blue
;
}
50% {
text-shadow:
-4px 4px 0 blue,
-3px 3px 0 blue,
-2px 2px 0 blue,
-1px 1px 0 blue,
4px -4px 0 orange,
3px -3px 0 orange,
2px -2px 0 orange,
1px -1px 0 orange
;
}
75% {
text-shadow:
4px 4px 0 orange,
3px 3px 0 orange,
2px 2px 0 orange,
1px 1px 0 orange,
-4px -4px 0 blue,
-3px -3px 0 blue,
-2px -2px 0 blue,
-1px -1px 0 blue
;
}
100% {
text-shadow:
4px -4px 0 blue,
3px -3px 0 blue,
2px -2px 0 blue,
1px -1px 0 blue,
-4px 4px 0 orange,
-3px 3px 0 orange,
-2px 2px 0 orange,
-1px 1px 0 orange
;
}
}
Подписывайтесь на мой YouTube-канал