Is there a way to gradually reveal all the components in my header
once the window
has finished loading by utilizing jQuery's fadeIn
function?
Below is the pertinent code snippet:
HTML
<div class="banner">
<header class="header">
<ul class="nav">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<i class="fa fa-bars"></i>
</header>