-
Üyelik
17.01.2016
-
Yaş/Cinsiyet
28 / E
-
Meslek
.
-
Konum
Diğer
-
Ad Soyad
R** A**
-
Mesajlar
389
-
Beğeniler
191 / 51
-
Ticaret
2, (%100)
Jquery/Javascript ile nasıl bir döngü oluşturabilirim? Aşağıdaki döngüyü sürekli başa sarmak istiyorum
start();
function start() {
$( "body" ).css({'background': 'url("images/1.jpg") no-repeat center center fixed', 'background-size': 'cover'});
setTimeout(function(){
$( "body" ).css({'background': 'url("images/2.jpg") no-repeat center center fixed', 'background-size': 'cover'});
}, 2000);
setTimeout(function(){
$( "body" ).css({'background': 'url("images/1.jpg") no-repeat center center fixed', 'background-size': 'cover'});
}, 4000);
start();
}