I tested the code in Chrome and it worked normally, does anyone know what this is ??
body{
background-image: url("blo.jpg");
background-position: center center;
background-attachment: fixed;
background-size: 100% 100%;
background-repeat: no-repeat;
animation-name: animac;
animation-iteration-count: infinite;
animation-duration: 60s;
}
@keyframes animac{
0%{
background-image: url("blo.jpg");
}
20%{
background-image: url("bla.jpg");
}
40%{
background-image: url("ble1.jpg");
}
60%{
background-image: url("bli.jpg");
}
80%{
background-image: url("ble.jpg");
}
100%{
background-image: url("blo.jpg");
}
}