@keyframes grow { from { width: 0; } to { width: 100%; } } @keyframes fadeIn { from { opacity: 0; display: none; } to { opacity: 1; display: inline-block; } } .grow { animation-name: grow; animation-duration: 0.5s; } #stripe { position: static; width: 0; margin: auto; background: transparent url(/assets/stripe.png) no-repeat center center !important; } #stripe.final { position: fixed; width: 100%; } #stripe.hidecontent * { display: none; opacity: 0; } #stripe.showcontent * { animation-name: fadeIn; animation-duration: 0.5s; }