<div class="container">
<p>2024 iT 鐵人賽</p>
</div>
.container {
border: black dashed;
display: flex;
justify-content: center;
padding: 50px 0;
font-family: Arial, sans-serif;
}
p {
font-size: 24px;
color: #333;
opacity: 0;
animation: fadeZoomInOut 6s ease-in-out infinite;
}
@keyframes fadeZoomInOut {
0%,
100% {
opacity: 0;
transform: scale(0.5) rotate(0deg);
}
50% {
opacity: 1;
transform: scale(2) rotate(360deg);
color: #b0e0e6;
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.