0
我正在使用cycle.all.js jQuery插件(http://jquery.malsup.com/cycle/)。現在它工作正常,但我需要第一個圖像比其他所有圖像有更短的暫停時間。因此,當用戶第一次懸停他鼠標移到幻燈片-DIV週期立即開始,但第一張幻燈片後,它改變了超時650這是我的代碼看起來像現在:jQuery cycle.all.js第一張幻燈片暫停
$('div#slideshow').mouseenter(->
$(this).cycle
fx: "fade",
speed: 1
timeout: 650
).mouseleave ->
$(this).cycle 'stop'
只是說明你的CS。 '@'映射到'this'。 –