Sommerreifen KUMHO ES31 185/65 R15 88 H
KUMHO ES31 185/65 R15 88 H
58,00 €
KUMHO ES31 185/65 R15 88 H
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Laufschrift mit blinkendem Klick</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
font-family: Arial, sans-serif;
background: #f9f9f9;
}
.marquee {
width: 80%;
height: 60px;
border: 1px solid #ccc;
position: relative;
overflow: hidden;
display: flex;
align-items: center;
background: #f9f9f9;
color: black;
}
.marquee-content {
white-space: nowrap;
position: absolute;
left: 100%;
font-size: 1.2em;
animation: scroll-left 8s linear forwards; /* einmal durchlaufen */
}
/* WhatsApp-Link */
.whatsapp-link {
display: inline-block;
font-size: 1.3em;
font-weight: bold;
color: red;
text-decoration: none;
cursor: pointer;
}
/* ✨ Das Wort "Klick" blinkt dauerhaft */
.blink {
animation: blink 1s infinite;
}
@keyframes blink {
0%, 50%, 100% { opacity: 1; }
25%, 75% { opacity: 0; }
}
@keyframes scroll-left {
0% { left: 115%; }
100% { left: -115%; } /* läuft komplett durch */
}
</style>
</head>
<body>
<div class="marquee">
<div class="marquee-content">
Alle anderen Marken auf Anfrage per
<a href="https://wa.me/436764750888" target="_blank" class="whatsapp-link">
WhatsApp (<span class="blink">Klick</span>)
</a>
</div>
</div>
</body>
</html>