I'm looking for some help. I wish for some CSS animation to be applied to a div id called content when one of the navigational buttons is clicked.
When the is clicked, I want the animation to be triggered so that it disappears off of the page and the new page is loaded.
Navigational Bar
<ul id="nav">
    <li><a href="index.html">HOME</a></li>
    <li><a href="about-us.html">ABOUT US</a></li>
    <li><a href="clients.html">CLIENTS</a></li>
    <li><a href="services.html">SERVICES</a></li>
    <li><a href="contact.html">CONTACT US</a></li>
</ul>
Content Box HTML
<div id="content">
</div>
CSS Styling
    @-moz-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -moz-transform: translateY(2000px);
    }
}
@-o-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -o-transform: translateY(0);
    }
    100% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }
}
@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}
.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    -moz-animation-name: fadeOutDownBig;
    -o-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}
 
     
     
     
    