I'm making a portfolio for my 8th grade exit interview with HTML, Javacript, and CSS. For some reason, after my CSS animation plays, my anchor tags no longer work.
You can see a demo here.
Here is my code for one of the links:
<a href="#" onclick="one()"><div class=img id="img1"> </div></a>
And my css:
@keyframes secondwindow
{
from { opacity:0; }
to { opacity:1; }
}
@-moz-keyframes secondwindow
{
from { opacity:0; }
to { opacity:1; }
}
@-webkit-keyframes secondwindow
{
from { opacity:0; }
to { opacity:1; }
}
@-o-keyframes secondwindow
{
from { opacity:0; }
to { opacity:1; }
}