Hi there,
you could add some CSS animations on the elements you want to fade in eg.
#site-navigation,
#sticky-navigation {
-webkit-animation-name: NavFadeIn;
animation-name: NavFadeIn;
-webkit-animation-duration: 10s;
animation-duration: 10s;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
}
@-webkit-keyframes NavFadeIn {
0% {
opacity: 0;
}
90% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes NavFadeIn {
0% {
opacity: 0;
}
90% {
opacity: 0;
}
100% {
opacity: 1;
}
}
So this is setting the site-navigation and sticky-navigation to opacity 0 on load. The animation runs once over 10 seconds, 90% ( 9 seconds ) through the animation the opacity remains zero and then fades in to solid in the last second.