HTML
<div class="banner">
<img src="tvoje-fotka.jpg" alt="FC Odra Petřkovice">
<div class="text">
<span>Hrdost</span>
<span>Disciplína</span>
<span>Rodina</span>
<span>Hrdý klub na okraji Ostravy</span>
<span class="final">FC Odra Petřkovice</span>
</div>
</div>
<style>
.banner {
position: relative;
width: 100%;
max-height: 400px;
overflow: hidden;
}
.banner img {
width: 100%;
display: block;
}
.text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 40px;
font-weight: bold;
text-align: center;
text-shadow: 2px 2px 10px black;
}
.text span {
position: absolute;
opacity: 0;
animation: fade 15s infinite;
width: 100%;
}
.text span:nth-child(1) { animation-delay: 0s; }
.text span:nth-child(2) { animation-delay: 3s; }
.text span:nth-child(3) { animation-delay: 6s; }
.text span:nth-child(4) { animation-delay: 9s; }
.text span:nth-child(5) { animation-delay: 12s; }
@keyframes fade {
0% { opacity: 0; transform: translateY(20px); }
10% { opacity: 1; transform: translateY(0); }
25% { opacity: 1; }
35% { opacity: 0; }
100% { opacity: 0; }
}
.final {
font-size: 48px;
color: #ffe600;
}
</style>
- 25 zobrazení



