Wir programmieren blinkende Buchstaben für unsere Webseite mit HTML und CSS

von | Mai 21, 2024 | Design | 0 Kommentare

Schlagwörter: CSS - CSS3 - HTML

Inhaltsverzeichnis

Heute zeige ich euch einen coolen Effekt den man für Webseiten und Online Shops gut brauchen kann und zwar zeige ich euch wie ihr blinkende Wörter / Buchstaben machen könnt. Wenn man dann möchte könnte man daraus auch gleich ein Neon Schild bauen usw…

Ein Effekt der ein wirklicher Hingucker ist.

Video

HTML

1
2
3
4
5
6
7
8
9
10
11
12
13
14
    <ul>
      <li>E</li>
      <li>R</li>
      <li>I</li>
      <li>C</li>
      <li>-</li>
      <li>M</li>
      <li>Ä</li>
      <li>C</li>
      <li>H</li>
      <li>L</li>
      <li>E</li>
      <li>R</li>
    </ul>

CSS

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
:root {
  --f1: #eaff00;
  /* fff900 */
  --f2: #0da5e6;
  /* ff6c00 */
  --grau: #484848;
  --bg: #262626;
}
 
* {
  margin: 0;
  padding: 0;
}
 
body {
  background: var(--bg);
  /* 262626*/
}
 
ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}
 
ul li {
  list-style: none;
  font-size: clamp(2rem, -1.5rem + 8vw, 6rem);
  letter-spacing: 15px;
  text-shadow: none;
  animation: animate 2s infinite linear;
}
 
@keyframes animate {
  0% {
    color: var(--grau);
    text-shadow: none;
  }
 
  18% {
    color: var(--grau);
    text-shadow: none;
  }
 
  20% {
    color: var(--f1);
    text-shadow: 0 0 7px var(--f1), 0 0 20px var(--f2);
  }
 
  30% {
    color: var(--grau);
    text-shadow: none;
  }
 
  35% {
    color: var(--f1);
    text-shadow: 0 0 7px var(--f1), 0 0 20px var(--f2);
  }
 
  70% {
    color: var(--grau);
    text-shadow: none;
  }
 
  85% {
    color: var(--f1);
    text-shadow: 0 0 7px var(--f1), 0 0 20px var(--f2);
  }
 
  90% {
    color: var(--grau);
    text-shadow: none;
  }
 
  100% {
    color: var(--grau);
    text-shadow: none;
  }
}
 
ul li:nth-child(1) {
  animation-delay: 200ms;
}
 
ul li:nth-child(2) {
  animation-delay: 400ms;
}
 
ul li:nth-child(3) {
  animation-delay: 600ms;
}
 
ul li:nth-child(4) {
  animation-delay: 800ms;
}
 
ul li:nth-child(5) {
  animation-delay: 1000ms;
}
 
ul li:nth-child(6) {
  animation-delay: 1200ms;
}
 
ul li:nth-child(7) {
  animation-delay: 1400ms;
}
 
ul li:nth-child(8) {
  animation-delay: 1600ms;
}
 
ul li:nth-child(9) {
  animation-delay: 1800ms;
}
 
ul li:nth-child(10) {
  animation-delay: 2000ms;
}
 
ul li:nth-child(11) {
  animation-delay: 2200ms;
}
 
ul li:nth-child(12) {
  animation-delay: 2400ms;
}

0 Kommentare

Einen Kommentar abschicken

Du kannst auf Fediverse-Profile verlinken, indem du fl:@benutzername in deinem Kommentar eingibst.

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert