Codice

<style>
@keyframes esempio {
0% { background-color: red; }
100% { background-color: yellow; }
}

.box {
width: 100px;
height: 100px;
background-color: red;
animation-name: esempio;
animation-duration: 3s;
animation-delay: 2s; /* Ritardo di 2 secondi */
animation-fill-mode: forwards;
}
</style>
</head>
<body>

<div class="box"></div>