2010-03-16 98 views

回答

0

嘗試:

$('#slides').cycle({ 
    fx: 'fade', 
    sync: 0, 
    timeout: 5000 
}); 
1
$('#slides').cycle({ 
      // The 'fade' fx it's the default transition of Cycle 
      timeout: 5000, // Between every transition 
      delay: 5000 // Before first transition 
}); 
0

幻燈片之間的延遲的選項

timeout 

所以,你應該使用:

$('#slides').cycle({ 
     fx: 'fade', 
     sync: 0, 
     timeout: 5000 
});