<!DOCTYPE html>
<title>Example</title>
<style>
.animatedBox {
width: 200px;
padding: 20px;
text-align: center;
font: 24px sans-serif;
color: white;
background: yellowgreen;
visibility: hidden;
animation: myAnimation 2s linear 1s 4 forwards;
}
@keyframes myAnimation {
50% {
100% {
visibility: visible;
</style>
<div class="animatedBox">Animated box</div>