CSS ile Otomatik Değişen Arkaplan Resimleri

CSS Kodumuz:

body{
background:url("images/1.jpg");
animation:image 25s infinite alternate;
-webkit-animation:image 25s infinite alternate;
-moz-animation:image 25s infinite alternate;
}

@keyframes image{
0%{
background:url("images/1.jpg");
}

25%{
background:url("images/2.jpg");
}

50%{
background:url("images/3.jpg");
}

75%{
background:url("images/4.jpg");
}

100%{
background:url("images/5.jpg");
}

Yorumlar

Popüler Yayınlar