这是代码:http: //jsfiddle.net/KTHWd/
所以基本上所有的div都有相同的类,当我悬停在它上面时,我只想循环当前的div,当我悬停时,当前循环所有的div。
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'none',
speed: 100,
timeout: 100
});
$('.slideshow').cycle('stop');
});
$(".slideshow").hover(
function () {
$(document).ready(function() {
$('.slideshow').cycle({
fx: 'none',
speed: 100,
timeout: 100
});
});
},
function () {
$('.slideshow').cycle('stop');
}
);