I have the following code working perfectly, however, I need to have an individual link on each of the three @keyframes
fine banners. Is there a possibility?
HTML
<div class="banner"></div>
CSS
.banner {
width: 960px;
height: 350px;
margin: 0 auto;
animation: slide 10s infinite;
animation-direction: alterante;
}
@keyframes slide {
0%, 30% {
background-image: url(../imagens/001.jpg);
}
35%, 65% {
background-image: url(../imagens/002.jpg);
}
70%, 100% {
background-image: url(../imagens/003.jpg);
}
}