I'm using animate.css and the animation occurs every time i refresh or return from another page; how do i make it so that once the index.html is visited, and I go to another .html or refresh the page, the li does not occur again?
index.html
<div id="sidebar" class="col-sm-3 col-md-3">
<nav id="sidebar-nav">
<ul>
<li><a id="side-post" class="animated bounceInLeft" ui-sref="timeline">Timeline</a>
<li><a id="side-post" class="animated bounceInLeft" ui-sref="skills">Skills</a>
<li><a id="side-post" class="animated bounceInLeft" ui-sref="personal_interests">Interests</a>
</ul>
</nav>
style.css
#side-post {
animation-delay:0.7s;
-moz-animation-delay:0.7s;
-webkit-animation-delay:0.7s;
}