我正试图让我的第一张jQuery循环幻灯片图片淡入淡出:Slide Show test
我正在使用的代码是:
$(document).ready(function() {
$('#slideshow img:first').fadeIn(20000, function() {
$('#slideshow').cycle({
fx: 'fadeZoom',
timeout: 8000,
speed: 6000,
});
});
});
不幸的是它没有用。我错过了什么?我犯了什么错误?任何帮助,指导或代码片段都将不胜感激。
谢谢, PChuprina
答案 0 :(得分:0)
您是否尝试过以下操作?
$(document).ready(function() {
$('#slideshow img:first').fadeOut(0);
$('#slideshow img:first').fadeIn(20000, function() {
$('#slideshow').cycle({
fx: 'fadeZoom',
timeout: 8000,
speed: 6000,
});
});
});
答案 1 :(得分:0)
你正在淡化图像,但你应该在div中消失。
所以将img
更改为div
。