0
I have the following code working perfectly, however, I need that on each of the three banners of @keyframes
has an individual link. There is this 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);
}
}